Uses of Interface
org.apache.commons.chain.Command
Packages that use Command
Package
Description
The fundamental API contracts for the Chain of Responsibilty Pattern as
implemented in this package.
Concrete implementations of generic Commands that are useful in many
different environments, not tied to a particular tier such as Servlets).
Convenient base implementations of Chain of Responsibility Pattern
contracts from
org.apache.commons.chain.Basis for specialized
Context implementations suitable for use
in web applications, and generic Command implementations useful
across web application environments.Specialized
Context and Command implementations
suitable for use in a Portlet API environment.Specialized
Context and Command implementations
suitable for use in a Servlet API environment.-
Uses of Command in org.apache.commons.chain
Subinterfaces of Command in org.apache.commons.chainModifier and TypeInterfaceDescriptioninterfaceinterfaceMethods in org.apache.commons.chain that return CommandModifier and TypeMethodDescriptionCatalog.getCommand(String name) CatalogFactory.getCommand(String commandID) Return aCommandbased on the given commandID.Methods in org.apache.commons.chain with parameters of type CommandModifier and TypeMethodDescriptionvoidCatalog.addCommand(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 CommandModifier and TypeClassDescriptionclassCopy a specified literal value, or a context attribute stored under thefromKey(if any), to thetoKey.classAn abstract base command which uses introspection to look up a method to execute.classThis command combines elements of theLookupCommandwith theDispatchCommand.classclassRemove any context attribute stored under thefromKey.Methods in org.apache.commons.chain.generic that return CommandModifier and TypeMethodDescriptionprotected CommandLookupCommand.getCommand(Context context) Return theCommandinstance to be delegated to.Methods in org.apache.commons.chain.generic with parameters of type CommandModifier and TypeMethodDescriptionprivate 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 CommandFields in org.apache.commons.chain.impl declared as CommandMethods in org.apache.commons.chain.impl that return CommandModifier and TypeMethodDescriptionCatalogBase.getCommand(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 CommandModifier and TypeMethodDescriptionvoidCatalogBase.addCommand(String name, Command command) voidChainBase.addCommand(Command command) See theChainJavaDoc.Constructors in org.apache.commons.chain.impl with parameters of type Command -
Uses of Command in org.apache.commons.chain.web
Classes in org.apache.commons.chain.web that implement CommandModifier and TypeClassDescriptionclassclassAbstract 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 CommandModifier and TypeClassDescriptionclassConcrete implementation ofAbstractGetLocaleCommandfor the Portlet API.classConcrete 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 CommandModifier and TypeClassDescriptionclassclassclassConcrete implementation ofAbstractGetLocaleCommandfor the Servlet API.classclassConcrete implementation ofAbstractSetLocaleCommandfor the Servlet API.