Uses of Class
org.apache.commons.chain.CatalogFactory

Packages that use CatalogFactory
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 from org.apache.commons.chain
org.apache.commons.chain.web.servlet Specialized Context and Command implementations suitable for use in a Servlet API environment. 
 

Uses of CatalogFactory in org.apache.commons.chain
 

Methods in org.apache.commons.chain that return CatalogFactory
static CatalogFactory CatalogFactory.getInstance()
          Return the singleton CatalogFactory instance for the relevant ClassLoader.
 

Uses of CatalogFactory in org.apache.commons.chain.generic
 

Fields in org.apache.commons.chain.generic declared as CatalogFactory
private  CatalogFactory LookupCommand.catalogFactory
           
 

Methods in org.apache.commons.chain.generic that return CatalogFactory
 CatalogFactory LookupCommand.getCatalogFactory()
          Return the CatalogFactory from which lookups will be performed.
 

Methods in org.apache.commons.chain.generic with parameters of type CatalogFactory
 void LookupCommand.setCatalogFactory(CatalogFactory catalogFactory)
          Set the CatalogFactory from which lookups will be performed.
 

Constructors in org.apache.commons.chain.generic with parameters of type CatalogFactory
DispatchLookupCommand(CatalogFactory factory)
          Create an instance and initialize the catalogFactory property to given factory.
LookupCommand(CatalogFactory factory)
          Create an instance and initialize the catalogFactory property to given factory/
 

Uses of CatalogFactory in org.apache.commons.chain.impl
 

Subclasses of CatalogFactory in org.apache.commons.chain.impl
 class CatalogFactoryBase
          A simple implementation of CatalogFactory.
 

Uses of CatalogFactory in org.apache.commons.chain.web.servlet
 

Fields in org.apache.commons.chain.web.servlet declared as CatalogFactory
private  CatalogFactory ChainProcessor.factory
          The CatalogFactory for this application.