- Catalog - Interface in org.apache.commons.chain
-
A
Catalog is a collection of named
Commands (or
Chains) that can be used to retrieve the set of commands that
should be performed based on a symbolic identifier.
- CATALOG - Static variable in class org.apache.commons.chain.web.servlet.ChainProcessor
-
The name of the servlet init parameter containing the name of the
Catalog to use for processing incoming requests.
- CATALOG_DEFAULT - Static variable in class org.apache.commons.chain.web.servlet.ChainProcessor
-
The default request attribute under which we expose the
Catalog being used to subordinate
Commands.
- CATALOG_KEY - Static variable in interface org.apache.commons.chain.Catalog
-
A default context attribute for storing a default
Catalog,
provided as a convenience only.
- CatalogBase - Class in org.apache.commons.chain.impl
-
Simple in-memory implementation of
Catalog.
- CatalogBase() - Constructor for class org.apache.commons.chain.impl.CatalogBase
-
Create an empty catalog.
- CatalogBase(Map) - Constructor for class org.apache.commons.chain.impl.CatalogBase
-
Create a catalog whose commands are those specified in the given Map.
- CatalogFactory - Class in org.apache.commons.chain
-
- CatalogFactory() - Constructor for class org.apache.commons.chain.CatalogFactory
-
- CatalogFactoryBase - Class in org.apache.commons.chain.impl
-
- CatalogFactoryBase() - Constructor for class org.apache.commons.chain.impl.CatalogFactoryBase
-
- Chain - Interface in org.apache.commons.chain
-
A
Chain represents a configured list of
Commands that will be executed in order to perform processing
on a specified
Context.
- ChainBase - Class in org.apache.commons.chain.impl
-
Convenience base class for
Chain implementations.
- ChainBase() - Constructor for class org.apache.commons.chain.impl.ChainBase
-
- ChainBase(Command) - Constructor for class org.apache.commons.chain.impl.ChainBase
-
- ChainBase(Command[]) - Constructor for class org.apache.commons.chain.impl.ChainBase
-
- ChainBase(Collection) - Constructor for class org.apache.commons.chain.impl.ChainBase
-
- ChainListener - Class in org.apache.commons.chain.web
-
ServletContextListener that automatically
scans chain configuration files in the current web application at
startup time, and exposes the result in a
Catalog under a
specified servlet context attribute.
- ChainListener() - Constructor for class org.apache.commons.chain.web.ChainListener
-
- ChainProcessor - Class in org.apache.commons.chain.web.servlet
-
Custom subclass of
ChainServlet that also dispatches incoming
requests to a configurable
Command loaded from the specified
Catalog.
- ChainProcessor() - Constructor for class org.apache.commons.chain.web.servlet.ChainProcessor
-
- ChainServlet - Class in org.apache.commons.chain.web
-
Servlet that automatically scans chain configuration files
in the current web application at startup time, and exposes the result in a
Catalog under a specified servlet context attribute.
- ChainServlet() - Constructor for class org.apache.commons.chain.web.ChainServlet
-
- clear() - Static method in class org.apache.commons.chain.CatalogFactory
-
Clear all references to registered catalogs, as well as to the
relevant class loader.
- clear() - Method in class org.apache.commons.chain.impl.ContextBase
-
Override the default Map behavior to clear all keys and
values except those corresponding to JavaBeans properties.
- Command - Interface in org.apache.commons.chain
-
A
Command encapsulates a unit of processing work to be
performed, whose purpose is to examine and/or modify the state of a
transaction that is represented by a
Context.
- COMMAND - Static variable in class org.apache.commons.chain.web.servlet.ChainProcessor
-
The name of the servlet init parameter containing the name of the
Command (loaded from our configured
Catalog to use
for processing each incoming request.
- commands - Variable in class org.apache.commons.chain.impl.CatalogBase
-
The map of named
Commands, keyed by name.
- commands - Variable in class org.apache.commons.chain.impl.ChainBase
-
The list of
Commands configured for this
Chain, in
the order in which they may delegate processing to the remainder of
the
Chain.
- CONFIG_ATTR - Static variable in class org.apache.commons.chain.web.ChainListener
-
The name of the context init parameter containing the name of the
servlet context attribute under which our resulting
Catalog
will be stored.
- CONFIG_ATTR - Static variable in class org.apache.commons.chain.web.ChainServlet
-
The name of the context init parameter containing the name of the
servlet context attribute under which our resulting
Catalog
will be stored.
- CONFIG_CLASS_RESOURCE - Static variable in class org.apache.commons.chain.web.ChainListener
-
The name of the context init parameter containing a comma-delimited
list of class loader resources to be scanned.
- CONFIG_CLASS_RESOURCE - Static variable in class org.apache.commons.chain.web.ChainServlet
-
The name of the context init parameter containing a comma-delimited
list of class loader resources to be scanned.
- CONFIG_WEB_RESOURCE - Static variable in class org.apache.commons.chain.web.ChainListener
-
The name of the context init parameter containing a comma-delimited
list of web applicaton resources to be scanned.
- CONFIG_WEB_RESOURCE - Static variable in class org.apache.commons.chain.web.ChainServlet
-
The name of the context init parameter containing a comma-delimited
list of web applicaton resources to be scanned.
- ConfigParser - Class in org.apache.commons.chain.config
-
Class to parse the contents of an XML configuration file (using
Commons Digester) that defines and configures commands and command chains
to be registered in a
Catalog.
- ConfigParser() - Constructor for class org.apache.commons.chain.config.ConfigParser
-
- ConfigRuleSet - Class in org.apache.commons.chain.config
-
Digester
RuleSet for configuring
Chain of
Responsibility command chains, and adding them to an appropriate
Catalog.
- ConfigRuleSet() - Constructor for class org.apache.commons.chain.config.ConfigRuleSet
-
- containsValue(Object) - Method in class org.apache.commons.chain.impl.ContextBase
-
Override the default Map behavior to return
true if the specified value is present in either the
underlying Map or one of the local property values.
- Context - Interface in org.apache.commons.chain
-
A
Context represents the state information that is
accessed and manipulated by the execution of a
Command or a
Chain.
- context - Variable in class org.apache.commons.chain.web.portlet.PortletWebContext
-
The PortletContext for this web application.
- context - Variable in class org.apache.commons.chain.web.servlet.ServletWebContext
-
The ServletContext for this web application.
- ContextBase - Class in org.apache.commons.chain.impl
-
Convenience base class for
Context implementations.
- ContextBase() - Constructor for class org.apache.commons.chain.impl.ContextBase
-
Default, no argument constructor.
- ContextBase(Map) - Constructor for class org.apache.commons.chain.impl.ContextBase
-
Initialize the contents of this
Context by copying the
values from the specified
Map.
- contextDestroyed(ServletContextEvent) - Method in class org.apache.commons.chain.web.ChainListener
-
Remove the configured
Catalog from the servlet context
attributes for this web application.
- contextInitialized(ServletContextEvent) - Method in class org.apache.commons.chain.web.ChainListener
-
Scan the required chain configuration resources, assemble the
configured chains into a
Catalog, and expose it as a
servlet context attribute under the specified key.
- CONTINUE_PROCESSING - Static variable in interface org.apache.commons.chain.Command
-
Commands should return
CONTINUE_PROCESSING if the processing
of the given
Context should be delegated to a subsequent
Command in an enclosing
Chain.
- CopyCommand - Class in org.apache.commons.chain.generic
-
Copy a specified literal value, or a context attribute stored under
the fromKey (if any), to the toKey.
- CopyCommand() - Constructor for class org.apache.commons.chain.generic.CopyCommand
-
- entrySet() - Method in class org.apache.commons.chain.impl.ContextBase
-
Override the default
Map behavior to return a
Set that meets the specified default behavior except
for attempts to remove the key for a property of the
Context
implementation class, which will throw
UnsupportedOperationException.
- equals(Object) - Method in class org.apache.commons.chain.web.MapEntry
-
Determines if this entry is equal to the passed object.
- evaluateResult(Object) - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Evaluate the result of the method invocation as a boolean value.
- execute(Context) - Method in interface org.apache.commons.chain.Chain
-
Execute the processing represented by this
Chain according
to the following algorithm.
- execute(Context) - Method in interface org.apache.commons.chain.Command
-
Execute a unit of processing work to be performed.
- execute(Context) - Method in class org.apache.commons.chain.generic.CopyCommand
-
Copy a specified literal value, or a context attribute stored under
the fromKey (if any), to the toKey.
- execute(Context) - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Look up the method specified by either "method" or "methodKey" and invoke it,
returning a boolean value as interpreted by evaluateResult.
- execute(Context) - Method in class org.apache.commons.chain.generic.DispatchLookupCommand
-
Look up the specified command, and (if found) execute it.
- execute(Context) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Look up the specified command, and (if found) execute it.
- execute(Context) - Method in class org.apache.commons.chain.generic.RemoveCommand
-
Copy the specified source attribute to the specified destination
attribute.
- execute(Context) - Method in class org.apache.commons.chain.impl.ChainBase
-
- execute(Context) - Method in class org.apache.commons.chain.web.AbstractGetLocaleCommand
-
Retrieve the Locale for this request, and store it
under the specified context attribute.
- execute(Context) - Method in class org.apache.commons.chain.web.AbstractSetLocaleCommand
-
Retrieve the Locale stored under the specified
context attribute key, and establish it on this response.
- extractMethod(Context) - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Extract the dispatch method.
- get(Object) - Method in class org.apache.commons.chain.impl.ContextBase
-
Override the default Map behavior to return the value
of a local property if the specified key matches a local property name.
- getApplicationScope() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getApplicationScope() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
- getApplicationScope() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getApplicationScope() - Method in class org.apache.commons.chain.web.WebContext
-
Return a mutable Map that maps application scope
attribute names to their values.
- getArguments(Context) - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Get the arguments to be passed into the dispatch method.
- getArguments(Context) - Method in class org.apache.commons.chain.generic.DispatchLookupCommand
-
Get the arguments to be passed into the dispatch method.
- getCatalog() - Method in class org.apache.commons.chain.CatalogFactory
-
Gets the default instance of Catalog associated with the factory
(if any); otherwise, return null.
- getCatalog(String) - Method in class org.apache.commons.chain.CatalogFactory
-
Retrieves a Catalog instance by name (if any); otherwise
return null.
- getCatalog(Context) - Method in class org.apache.commons.chain.generic.LookupCommand
-
- getCatalog() - Method in class org.apache.commons.chain.impl.CatalogFactoryBase
-
Gets the default instance of Catalog associated with the factory
(if any); otherwise, return null.
- getCatalog(String) - Method in class org.apache.commons.chain.impl.CatalogFactoryBase
-
Retrieves a Catalog instance by name (if any); otherwise
return null.
- getCatalog(Context) - Method in class org.apache.commons.chain.web.servlet.PathInfoMapper
-
- getCatalog(Context) - Method in class org.apache.commons.chain.web.servlet.RequestParameterMapper
-
- getCatalog(Context) - Method in class org.apache.commons.chain.web.servlet.ServletPathMapper
-
- getCatalogClass() - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Return the fully qualified
Catalog
implementation class.
- getCatalogElement() - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Return the element name of a catalog element.
- getCatalogFactory() - Method in class org.apache.commons.chain.generic.LookupCommand
-
- getCatalogKey() - Method in class org.apache.commons.chain.web.servlet.PathInfoMapper
-
- getCatalogKey() - Method in class org.apache.commons.chain.web.servlet.RequestParameterMapper
-
Return the context key under which our
Catalog has been
stored.
- getCatalogKey() - Method in class org.apache.commons.chain.web.servlet.ServletPathMapper
-
- getCatalogName() - Method in class org.apache.commons.chain.generic.LookupCommand
-
Return the name of the
Catalog to be searched, or
null to search the default
Catalog.
- getChainClass() - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Return the fully qualified
Chain
implementation class.
- getChainElement() - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Return the element name of a chain element.
- getClassAttribute() - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Return the attribute name of a class attribute.
- getCommand(String) - Method in interface org.apache.commons.chain.Catalog
-
Return the
Command or
Chain associated with the
specified name, if any; otherwise, return
null.
- getCommand(String) - Method in class org.apache.commons.chain.CatalogFactory
-
Return a Command based on the given commandID.
- getCommand(Context) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Return the
Command instance to be delegated to.
- getCommand(String) - Method in class org.apache.commons.chain.impl.CatalogBase
-
Return the
Command associated with the
specified name, if any; otherwise, return
null.
- getCommandElement() - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Return the element name of a command element.
- getCommandName(Context) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Return the name of the
Command instance to be delegated to.
- getCommandName(Context) - Method in class org.apache.commons.chain.web.servlet.PathInfoMapper
-
Look up the extra path information for this request, and use it to
select an appropriate
Command to be executed.
- getCommandName(Context) - Method in class org.apache.commons.chain.web.servlet.RequestParameterMapper
-
Look up the specified request paramater for this request, and use it
to select an appropriate
Command to be executed.
- getCommandName(Context) - Method in class org.apache.commons.chain.web.servlet.ServletPathMapper
-
Look up the servlet path information for this request, and use it to
select an appropriate
Command to be executed.
- getContext() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
Return the
FacesContext instance for the request
associated with this
FacesWebContext.
- getContext() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
Return the PortletContext for this context.
- getContext() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
Return the ServletContext for this context.
- getCookies() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getCookies() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
Returns an empty Map - portlets don't support Cookies.
- getCookies() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getCookies() - Method in class org.apache.commons.chain.web.WebContext
-
Return an immutable Map that maps cookie names to
the set of cookies specified in the request.
- getDefineElement() - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Return the element name of a define element.
- getDigester() - Method in class org.apache.commons.chain.config.ConfigParser
-
Return the Digester instance to be used for
parsing, creating one if necessary.
- getFromKey() - Method in class org.apache.commons.chain.generic.CopyCommand
-
Return the context attribute key for the source attribute.
- getFromKey() - Method in class org.apache.commons.chain.generic.RemoveCommand
-
Return the context attribute key for the attribute.
- getHeader() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getHeader() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
- getHeader() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getHeader() - Method in class org.apache.commons.chain.web.WebContext
-
Return an immutable Map that maps header names to
the first (or only) header value (as a String).
- getHeaderValues() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getHeaderValues() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
- getHeaderValues() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getHeaderValues() - Method in class org.apache.commons.chain.web.WebContext
-
Return an immutable Map that maps header names to
the set of all values specified in the request (as a String array).
- getInitParam() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getInitParam() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
- getInitParam() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getInitParam() - Method in class org.apache.commons.chain.web.WebContext
-
Return an immutable Map that maps context application
initialization parameters to their values.
- getInstance() - Static method in class org.apache.commons.chain.CatalogFactory
-
Return the singleton
CatalogFactory instance
for the relevant
ClassLoader.
- getKey() - Method in class org.apache.commons.chain.web.MapEntry
-
Gets the entry key.
- getLocale(Context) - Method in class org.apache.commons.chain.web.AbstractGetLocaleCommand
-
Retrieve and return the Locale for this request.
- getLocale(Context) - Method in class org.apache.commons.chain.web.faces.FacesGetLocaleCommand
-
Retrieve and return the Locale for this request.
- getLocale(Context) - Method in class org.apache.commons.chain.web.portlet.PortletGetLocaleCommand
-
Retrieve and return the Locale for this request.
- getLocale(Context) - Method in class org.apache.commons.chain.web.servlet.ServletGetLocaleCommand
-
Retrieve and return the Locale for this request.
- getLocaleKey() - Method in class org.apache.commons.chain.web.AbstractGetLocaleCommand
-
Return the context attribute key under which we will store
the request Locale.
- getLocaleKey() - Method in class org.apache.commons.chain.web.AbstractSetLocaleCommand
-
Return the context attribute key under which we will retrieve
the response Locale.
- getMethod() - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Return the method name.
- getMethod() - Method in class org.apache.commons.chain.generic.DispatchLookupCommand
-
Return the method name.
- getMethodKey() - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Return the Context key for the method name.
- getMethodKey() - Method in class org.apache.commons.chain.generic.DispatchLookupCommand
-
Return the Context key for the method name.
- getName() - Method in class org.apache.commons.chain.generic.LookupCommand
-
Return the name of the
Command that we will look up and
delegate execution to.
- getNameAttribute() - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Return the attribute name of a name attribute.
- getNameKey() - Method in class org.apache.commons.chain.generic.LookupCommand
-
Return the context attribute key under which the
Command
name is stored.
- getNames() - Method in interface org.apache.commons.chain.Catalog
-
Return an
Iterator over the set of named commands
known to this
Catalog.
- getNames() - Method in class org.apache.commons.chain.CatalogFactory
-
- getNames() - Method in class org.apache.commons.chain.impl.CatalogBase
-
Return an
Iterator over the set of named commands
known to this
Catalog.
- getNames() - Method in class org.apache.commons.chain.impl.CatalogFactoryBase
-
- getParam() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getParam() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
- getParam() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getParam() - Method in class org.apache.commons.chain.web.WebContext
-
Return an immutable Map that maps request parameter
names to the first (or only) value (as a String).
- getParameter() - Method in class org.apache.commons.chain.web.servlet.RequestParameterMapper
-
- getParamValues() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getParamValues() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
- getParamValues() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getParamValues() - Method in class org.apache.commons.chain.web.WebContext
-
Return an immutable Map that maps request parameter
names to the set of all values (as a String array).
- getRequest() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
Return the PortletRequest for this context.
- getRequest() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
Return the HttpServletRequest for this context.
- getRequestScope() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getRequestScope() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
- getRequestScope() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getRequestScope() - Method in class org.apache.commons.chain.web.WebContext
-
Return a mutable Map that maps request scope
attribute names to their values.
- getResponse() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
Return the PortletResponse for this context.
- getResponse() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
Return the HttpServletResponse for this context.
- getRuleSet() - Method in class org.apache.commons.chain.config.ConfigParser
-
Return the RuleSet to be used for configuring
our Digester parsing rules, creating one if necessary.
- getSessionScope() - Method in class org.apache.commons.chain.web.faces.FacesWebContext
-
- getSessionScope() - Method in class org.apache.commons.chain.web.portlet.PortletWebContext
-
- getSessionScope() - Method in class org.apache.commons.chain.web.servlet.ServletWebContext
-
- getSessionScope() - Method in class org.apache.commons.chain.web.WebContext
-
Return a mutable Map that maps session scope
attribute names to their values.
- getSignature() - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Return a Class[] describing the expected signature of the method.
- getSignature() - Method in class org.apache.commons.chain.generic.DispatchLookupCommand
-
Return a Class[] describing the expected signature of
the method.
- getToKey() - Method in class org.apache.commons.chain.generic.CopyCommand
-
Return the context attribute key for the destination attribute.
- getUseContextClassLoader() - Method in class org.apache.commons.chain.config.ConfigParser
-
Return the "use context class loader" flag.
- getValue() - Method in class org.apache.commons.chain.generic.CopyCommand
-
Return the literal value to be copied.
- getValue() - Method in class org.apache.commons.chain.web.MapEntry
-
Gets the entry value.
- service(HttpServletRequest, HttpServletResponse) - Method in class org.apache.commons.chain.web.ChainServlet
-
Does nothing; this servlet's only purpose is to initialize a Chain
and store it in the servlet context.
- service(HttpServletRequest, HttpServletResponse) - Method in class org.apache.commons.chain.web.servlet.ChainProcessor
-
- ServletGetLocaleCommand - Class in org.apache.commons.chain.web.servlet
-
- ServletGetLocaleCommand() - Constructor for class org.apache.commons.chain.web.servlet.ServletGetLocaleCommand
-
- ServletPathMapper - Class in org.apache.commons.chain.web.servlet
-
Command that uses the "servlet path" component of the request URI
to select a
Command from the appropriate
Catalog, and
execute it.
- ServletPathMapper() - Constructor for class org.apache.commons.chain.web.servlet.ServletPathMapper
-
- ServletSetLocaleCommand - Class in org.apache.commons.chain.web.servlet
-
- ServletSetLocaleCommand() - Constructor for class org.apache.commons.chain.web.servlet.ServletSetLocaleCommand
-
- ServletWebContext - Class in org.apache.commons.chain.web.servlet
-
Concrete implementation of
WebContext suitable for use in
Servlets and JSP pages.
- ServletWebContext() - Constructor for class org.apache.commons.chain.web.servlet.ServletWebContext
-
- ServletWebContext(ServletContext, HttpServletRequest, HttpServletResponse) - Constructor for class org.apache.commons.chain.web.servlet.ServletWebContext
-
Construct a
ServletWebContext instance that is initialized
with the specified Servlet API objects.
- setCatalog(Catalog) - Method in class org.apache.commons.chain.CatalogFactory
-
Sets the default instance of Catalog associated with the factory.
- setCatalog(Catalog) - Method in class org.apache.commons.chain.impl.CatalogFactoryBase
-
Sets the default instance of Catalog associated with the factory.
- setCatalogClass(String) - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Set the fully qualified
Catalog
implementation class.
- setCatalogElement(String) - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Set the element name of a catalog element.
- setCatalogFactory(CatalogFactory) - Method in class org.apache.commons.chain.generic.LookupCommand
-
- setCatalogKey(String) - Method in class org.apache.commons.chain.web.servlet.PathInfoMapper
-
- setCatalogKey(String) - Method in class org.apache.commons.chain.web.servlet.RequestParameterMapper
-
- setCatalogKey(String) - Method in class org.apache.commons.chain.web.servlet.ServletPathMapper
-
- setCatalogName(String) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Set the name of the
Catalog to be searched, or
null to search the default
Catalog.
- setChainClass(String) - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Set the fully qualified
Chain
implementation class.
- setChainElement(String) - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Set the element name of a chain element.
- setClassAttribute(String) - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Set the attribute name of a class attribute.
- setCommandElement(String) - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Set the element name of a command element.
- setDefineElement(String) - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Set the element name of a define element.
- setFromKey(String) - Method in class org.apache.commons.chain.generic.CopyCommand
-
Set the context attribute key for the source attribute.
- setFromKey(String) - Method in class org.apache.commons.chain.generic.RemoveCommand
-
Set the context attribute key for the attribute.
- setIgnoreExecuteResult(boolean) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Set the rules for whether or not this class will ignore or
pass through the value returned from executing the looked up
command.
- setIgnorePostprocessResult(boolean) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Set the rules for whether or not this class will ignore or
pass through the value returned from executing the looked up
Filter's postprocess() method.
- setLocale(Context, Locale) - Method in class org.apache.commons.chain.web.AbstractSetLocaleCommand
-
Establish the specified Locale for this response.
- setLocale(Context, Locale) - Method in class org.apache.commons.chain.web.faces.FacesSetLocaleCommand
-
Establish the specified Locale for this response.
- setLocale(Context, Locale) - Method in class org.apache.commons.chain.web.portlet.PortletSetLocaleCommand
-
Establish the specified Locale for this response.
- setLocale(Context, Locale) - Method in class org.apache.commons.chain.web.servlet.ServletSetLocaleCommand
-
Establish the specified Locale for this response.
- setLocaleKey(String) - Method in class org.apache.commons.chain.web.AbstractGetLocaleCommand
-
Set the context attribute key under which we will store
the request Locale.
- setLocaleKey(String) - Method in class org.apache.commons.chain.web.AbstractSetLocaleCommand
-
Set the context attribute key under which we will retrieve
the response Locale.
- setMethod(String) - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Set the method name.
- setMethod(String) - Method in class org.apache.commons.chain.generic.DispatchLookupCommand
-
Set the method name.
- setMethodKey(String) - Method in class org.apache.commons.chain.generic.DispatchCommand
-
Set the Context key for the method name.
- setMethodKey(String) - Method in class org.apache.commons.chain.generic.DispatchLookupCommand
-
Set the Context key for the method name.
- setName(String) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Set the name of the
Command that we will look up and
delegate execution to.
- setNameAttribute(String) - Method in class org.apache.commons.chain.config.ConfigRuleSet
-
Set the attribute name of a name attribute.
- setNameKey(String) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Set the context attribute key under which the
Command
name is stored.
- setOptional(boolean) - Method in class org.apache.commons.chain.generic.LookupCommand
-
Set the optional flag for finding the specified command.
- setParameter(String) - Method in class org.apache.commons.chain.web.servlet.RequestParameterMapper
-
Set the name of the request parameter to use for
selecting the
Command to be executed.
- setRuleSet(RuleSet) - Method in class org.apache.commons.chain.config.ConfigParser
-
Set the RuleSet to be used for configuring
our Digester parsing rules.
- setToKey(String) - Method in class org.apache.commons.chain.generic.CopyCommand
-
Set the context attribute key for the destination attribute.
- setUseContextClassLoader(boolean) - Method in class org.apache.commons.chain.config.ConfigParser
-
Set the "use context class loader" flag.
- setValue(String) - Method in class org.apache.commons.chain.generic.CopyCommand
-
Set the literal value to be copied.
- setValue(Object) - Method in class org.apache.commons.chain.web.MapEntry
-
Sets the entry value if the entry can be modified.