Uses of Interface
org.apache.commons.chain.Command
-
Packages that use Command Package Description org.apache.commons.chain The fundamental API contracts for the Chain of Responsibilty Pattern as implemented in this package.org.apache.commons.chain.generic Concrete implementations of generic Commands that are useful in many different environments, not tied to a particular tier such as Servlets).org.apache.commons.chain.impl Convenient base implementations of Chain of Responsibility Pattern contracts fromorg.apache.commons.chain.org.apache.commons.chain.web Basis for specializedContextimplementations suitable for use in web applications, and genericCommandimplementations useful across web application environments.org.apache.commons.chain.web.portlet SpecializedContextandCommandimplementations suitable for use in a Portlet API environment.org.apache.commons.chain.web.servlet SpecializedContextandCommandimplementations suitable for use in a Servlet API environment. -
-
Uses of Command in org.apache.commons.chain
Subinterfaces of Command in org.apache.commons.chain Modifier and Type Interface Description interfaceChaininterfaceFilterMethods in org.apache.commons.chain that return Command Modifier and Type Method Description CommandCatalog. getCommand(java.lang.String name)CommandCatalogFactory. getCommand(java.lang.String commandID)Return aCommandbased on the given commandID.Methods in org.apache.commons.chain with parameters of type Command Modifier and Type Method Description voidCatalog. addCommand(java.lang.String name, Command command)voidChain. addCommand(Command command) -
Uses of Command in org.apache.commons.chain.generic
Classes in org.apache.commons.chain.generic that implement Command Modifier and Type Class Description classCopyCommandCopy a specified literal value, or a context attribute stored under thefromKey(if any), to thetoKey.classDispatchCommandAn abstract base command which uses introspection to look up a method to execute.classDispatchLookupCommandThis command combines elements of theLookupCommandwith theDispatchCommand.classLookupCommandclassRemoveCommandRemove any context attribute stored under thefromKey.Methods in org.apache.commons.chain.generic that return Command Modifier and Type Method Description protected CommandLookupCommand. getCommand(Context context)Return theCommandinstance to be delegated to.Methods in org.apache.commons.chain.generic with parameters of type Command Modifier and Type Method Description private java.lang.reflect.MethodDispatchLookupCommand. extractMethod(Command command, Context context)Extract the dispatch method. -
Uses of Command in org.apache.commons.chain.impl
Classes in org.apache.commons.chain.impl that implement Command Modifier and Type Class Description classChainBaseConvenience base class forChainimplementations.Fields in org.apache.commons.chain.impl declared as Command Modifier and Type Field Description protected Command[]ChainBase. commandsMethods in org.apache.commons.chain.impl that return Command Modifier and Type Method Description CommandCatalogBase. getCommand(java.lang.String name)Return theCommandassociated with the specified name, if any; otherwise, returnnull.(package private) Command[]ChainBase. getCommands()Methods in org.apache.commons.chain.impl with parameters of type Command Modifier and Type Method Description voidCatalogBase. addCommand(java.lang.String name, Command command)voidChainBase. addCommand(Command command)See theChainJavaDoc.Constructors in org.apache.commons.chain.impl with parameters of type Command Constructor Description ChainBase(Command command)ChainBase(Command[] commands) -
Uses of Command in org.apache.commons.chain.web
Classes in org.apache.commons.chain.web that implement Command Modifier and Type Class Description classAbstractGetLocaleCommandclassAbstractSetLocaleCommandAbstract baseCommandimplementation for setting the response locale for this response to theLocalestored under the context attribute key returned by thelocaleKeyproperty. -
Uses of Command in org.apache.commons.chain.web.portlet
Classes in org.apache.commons.chain.web.portlet that implement Command Modifier and Type Class Description classPortletGetLocaleCommandConcrete implementation ofAbstractGetLocaleCommandfor the Portlet API.classPortletSetLocaleCommandConcrete implementation ofAbstractSetLocaleCommandfor the Portlet API. -
Uses of Command in org.apache.commons.chain.web.servlet
Classes in org.apache.commons.chain.web.servlet that implement Command Modifier and Type Class Description classPathInfoMapperclassRequestParameterMapperclassServletGetLocaleCommandConcrete implementation ofAbstractGetLocaleCommandfor the Servlet API.classServletPathMapperclassServletSetLocaleCommandConcrete implementation ofAbstractSetLocaleCommandfor the Servlet API.
-