Index

C D G I O P R S 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

C

CATALOG - Static variable in class org.apache.commons.chain.web.javax.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.javax.servlet.ChainProcessor
The default request attribute under which we expose the Catalog being used to subordinate Commands.
ChainProcessor - Class in org.apache.commons.chain.web.javax.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.javax.servlet.ChainProcessor
The Default-Constructor for this class.
COMMAND - Static variable in class org.apache.commons.chain.web.javax.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.

D

destroy() - Method in class org.apache.commons.chain.web.javax.servlet.ChainProcessor
Clean up as this application is shut down.

G

getApplicationScope() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.
getCatalog(ServletWebContext) - Method in class org.apache.commons.chain.web.javax.servlet.PathInfoMapper
Return the Catalog to look up the Command in.
getCatalog(ServletWebContext) - Method in class org.apache.commons.chain.web.javax.servlet.RequestParameterMapper
Return the Catalog to look up the Command in.
getCatalog(ServletWebContext) - Method in class org.apache.commons.chain.web.javax.servlet.ServletPathMapper
Return the Catalog to look up the Command in.
getCatalogKey() - Method in class org.apache.commons.chain.web.javax.servlet.PathInfoMapper
Deprecated.
Use catalogName to specify the name of the catalog in the catalog factory.
getCatalogKey() - Method in class org.apache.commons.chain.web.javax.servlet.RequestParameterMapper
Return the context key under which our Catalog has been stored.
getCatalogKey() - Method in class org.apache.commons.chain.web.javax.servlet.ServletPathMapper
Deprecated.
Use catalogName to specify the name of the catalog in the catalog factory
getCommandName(ServletWebContext) - Method in class org.apache.commons.chain.web.javax.servlet.PathInfoMapper
Look up the extra path information for this request, and use it to select an appropriate Command to be executed.
getCommandName(ServletWebContext) - Method in class org.apache.commons.chain.web.javax.servlet.RequestParameterMapper
Look up the specified request parameter for this request, and use it to select an appropriate Command to be executed.
getCommandName(ServletWebContext) - Method in class org.apache.commons.chain.web.javax.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.javax.servlet.ServletWebContext
Return the ServletContext for this context.
getCookies() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.
getHeader() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.
getHeaderValues() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.
getInitParam() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.
getParam() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.
getParameter() - Method in class org.apache.commons.chain.web.javax.servlet.RequestParameterMapper
Deprecated.
Use catalogName to specify the name of the catalog in the catalog factory
getParamValues() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.
getRequest() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
Return the HttpServletRequest for this context.
getRequestScope() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.
getResponse() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
Return the HttpServletResponse for this context.
getSessionScope() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
See the WebContext's Javadoc.

I

init() - Method in class org.apache.commons.chain.web.javax.servlet.ChainProcessor
Cache the name of the command we should execute for each request.
initialize(ServletContext, HttpServletRequest, HttpServletResponse) - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
Initialize (or reinitialize) this ServletWebContext instance for the specified Servlet API objects.

O

org.apache.commons.chain.web.javax.servlet - package org.apache.commons.chain.web.javax.servlet
Specialized Context and Command implementations suitable for use in a Servlet API environment.

P

PathInfoMapper - Class in org.apache.commons.chain.web.javax.servlet
Command that uses the "path info" component of the request URI to select a Command from the appropriate Catalog, and execute it.
PathInfoMapper() - Constructor for class org.apache.commons.chain.web.javax.servlet.PathInfoMapper
The Default-Constructor for this class.

R

release() - Method in class org.apache.commons.chain.web.javax.servlet.ServletWebContext
Release references to allocated resources acquired in initialize() of via subsequent processing.
RequestParameterMapper - Class in org.apache.commons.chain.web.javax.servlet
Command that uses a specified request parameter to select a Command from the appropriate Catalog, and execute it.
RequestParameterMapper() - Constructor for class org.apache.commons.chain.web.javax.servlet.RequestParameterMapper
The Default-Constructor for this class.

S

service(HttpServletRequest, HttpServletResponse) - Method in class org.apache.commons.chain.web.javax.servlet.ChainProcessor
Configure a ServletWebContext for the current request, and pass it to the execute() method of the specified Command, loaded from our configured Catalog.
ServletGetLocaleCommand - Class in org.apache.commons.chain.web.javax.servlet
Concrete implementation of GetLocaleCommand for the Servlet API.
ServletGetLocaleCommand() - Constructor for class org.apache.commons.chain.web.javax.servlet.ServletGetLocaleCommand
Construct a new instance to get the locale from the Servlet API.
ServletPathMapper - Class in org.apache.commons.chain.web.javax.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.javax.servlet.ServletPathMapper
The Default-Constructor for this class.
ServletSetLocaleCommand - Class in org.apache.commons.chain.web.javax.servlet
Concrete implementation of SetLocaleCommand for the Servlet API.
ServletSetLocaleCommand() - Constructor for class org.apache.commons.chain.web.javax.servlet.ServletSetLocaleCommand
Construct a new instance to set the locale into the Servlet API.
ServletWebContext - Class in org.apache.commons.chain.web.javax.servlet
Concrete implementation of WebContext suitable for use in Servlets and JSP pages.
ServletWebContext() - Constructor for class org.apache.commons.chain.web.javax.servlet.ServletWebContext
Construct an uninitialized ServletWebContext instance.
ServletWebContext(ServletContext, HttpServletRequest, HttpServletResponse) - Constructor for class org.apache.commons.chain.web.javax.servlet.ServletWebContext
Construct a ServletWebContext instance that is initialized with the specified Servlet API objects.
setCatalogKey(String) - Method in class org.apache.commons.chain.web.javax.servlet.PathInfoMapper
Deprecated.
Use catalogName to specify the name of the catalog in the catalog factory.
setCatalogKey(String) - Method in class org.apache.commons.chain.web.javax.servlet.RequestParameterMapper
Deprecated.
Use catalogName to specify the name of the catalog in the catalog factory
setCatalogKey(String) - Method in class org.apache.commons.chain.web.javax.servlet.ServletPathMapper
Deprecated.
Use catalogName to specify the name of the catalog in the catalog factory
setParameter(String) - Method in class org.apache.commons.chain.web.javax.servlet.RequestParameterMapper
Set the name of the request parameter to use for selecting the Command to be executed.
C D G I O P R S 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form