Uses of Interface
org.apache.commons.chain.Catalog
-
Packages that use Catalog 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.config Optional package for configuring command chains in a catalog (using Digester) from an XML configuration file.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.servlet SpecializedContextandCommandimplementations suitable for use in a Servlet API environment. -
-
Uses of Catalog in org.apache.commons.chain
Methods in org.apache.commons.chain that return Catalog Modifier and Type Method Description abstract CatalogCatalogFactory. getCatalog()Gets the default instance of Catalog associated with the factory (if any); otherwise, returnnull.abstract CatalogCatalogFactory. getCatalog(java.lang.String name)Retrieves a Catalog instance by name (if any); otherwise returnnull.Methods in org.apache.commons.chain with parameters of type Catalog Modifier and Type Method Description abstract voidCatalogFactory. addCatalog(java.lang.String name, Catalog catalog)Adds a named instance of Catalog to the factory (for subsequent retrieval later).abstract voidCatalogFactory. setCatalog(Catalog catalog)Sets the default instance of Catalog associated with the factory. -
Uses of Catalog in org.apache.commons.chain.config
Methods in org.apache.commons.chain.config with parameters of type Catalog Modifier and Type Method Description voidConfigParser. parse(Catalog catalog, java.net.URL url)Deprecated.Use parse(URL) on a configuration resource with "factory" element(s) embedded -
Uses of Catalog in org.apache.commons.chain.generic
Methods in org.apache.commons.chain.generic that return Catalog Modifier and Type Method Description protected CatalogLookupCommand. getCatalog(Context context) -
Uses of Catalog in org.apache.commons.chain.impl
Classes in org.apache.commons.chain.impl that implement Catalog Modifier and Type Class Description classCatalogBaseSimple in-memory implementation ofCatalog.Fields in org.apache.commons.chain.impl declared as Catalog Modifier and Type Field Description private CatalogCatalogFactoryBase. catalogThe defaultCatalogfor thisCatalogFactory.Methods in org.apache.commons.chain.impl that return Catalog Modifier and Type Method Description CatalogCatalogFactoryBase. getCatalog()Gets the default instance of Catalog associated with the factory (if any); otherwise, returnnull.CatalogCatalogFactoryBase. getCatalog(java.lang.String name)Retrieves a Catalog instance by name (if any); otherwise returnnull.Methods in org.apache.commons.chain.impl with parameters of type Catalog Modifier and Type Method Description voidCatalogFactoryBase. addCatalog(java.lang.String name, Catalog catalog)Adds a named instance of Catalog to the factory (for subsequent retrieval later).voidCatalogFactoryBase. setCatalog(Catalog catalog)Sets the default instance of Catalog associated with the factory. -
Uses of Catalog in org.apache.commons.chain.web
Methods in org.apache.commons.chain.web with parameters of type Catalog Modifier and Type Method Description (package private) static voidChainResources. parseClassResources(Catalog catalog, java.lang.String resources, ConfigParser parser)Deprecated.Use the variant that does not take a catalog, on a configuration resource containing "catalog" element(s)private voidChainListener. parseJarResources(Catalog catalog, javax.servlet.ServletContext context, ConfigParser parser, org.apache.commons.logging.Log log)Deprecated.Use the variant that does not take a catalog, on a configuration resource containing "catalog" element(s)(package private) static voidChainResources. parseWebResources(Catalog catalog, javax.servlet.ServletContext context, java.lang.String resources, ConfigParser parser)Deprecated.Use the variant that does not take a catalog, on a configuration resource containing "catalog" element(s) -
Uses of Catalog in org.apache.commons.chain.web.servlet
Methods in org.apache.commons.chain.web.servlet that return Catalog Modifier and Type Method Description protected CatalogPathInfoMapper. getCatalog(Context context)protected CatalogRequestParameterMapper. getCatalog(Context context)protected CatalogServletPathMapper. getCatalog(Context context)
-