Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.commons.chain.config: Javadoc index of package org.apache.commons.chain.config.


Package Samples:

org.apache.commons.chain.config

Classes:

ConfigRuleSet: Digester RuleSet for configuring Chain of Responsibility command chains, and adding them to an appropriate org.apache.commons.chain.Catalog . The following properties may be configured prior to executing the addRuleInstance() method in order to influence the rules that get added, with default values in square brackets: catalogClass -- Fully qualified name of the implementation class used to create new org.apache.commons.chain.Catalog instances. If not specified, the default value is org.apache.commons.chain.impl.CatalogBsae . catalogElement -- Name of the XML element representing the addition of ...
ConfigCatalogRule: Digester rule that will cause the top-most element on the Digester stack (if it is a org.apache.commons.chain.Catalog to be registered with the org.apache.commons.chain.CatalogFactory instance for our application. If the attribute specified to our constructor has a value, that will be used as the name under which to register this org.apache.commons.chain.Catalog . Otherwise, this will become the default org.apache.commons.chain.Catalog for this application.
ConfigRegisterRule: Digester rule that will cause the top-most element on the Digester stack (if it is a org.apache.commons.chain.Command to be registered with the next-to-top element on the Digester stack (if it is a org.apache.commons.chain.Catalog or org.apache.commons.chain.Chain ). To be registered with a org.apache.commons.chain.Catalog , the top-most element must contain a value for the specified attribute that contains the name under which it should be registered.
ConfigParser: 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 org.apache.commons.chain.Catalog . Advanced users can configure the detailed parsing behavior by configuring the properties of an instance of this class prior to calling the parse() method. It is legal to call the parse() method more than once, in order to parse more than one configuration document.
ConfigDefineRule: Digester rule that will dynamically register a new set of rules for a specified element name and default implementation class. This allows "alias" elements to be created for Chain and Command implementation classes that are commonly used. Besides factoring out the class names to make changes easier, this also makes configuration files much easier to read and write.
ConfigParser2TestCase: Test case identical to ConfigParserTestCase except that it uses the define rule to define aliases for the commands and chains used in the test.
TestChain: Test implementation of Chain that exposes the getCommands() method publicy.
TestCommand: Test implementation of Command that exposes configurable properties.
ConfigParserTestCase: Test Case for org.apache.commons.chain.config.ConfigParser .

Home | Contact Us | Privacy Policy | Terms of Service