net.myvietnam.mvncore.configuration |
|
Java Source File Name | Type | Comment |
AbstractConfiguration.java | Class | Abstract configuration class. |
BaseConfiguration.java | Class | Basic configuration classe. |
BaseConfigurationXMLReader.java | Class | A specialized SAX2 XML parser that processes configuration objects.
This class mimics to be a SAX compliant XML parser. |
BasePathConfiguration.java | Class | This is exactly the same as the BaseConfiguration but the backing
store is based on a path (e.g. |
BasePathLoader.java | Interface | Definition of an interface for objects that load configuration data
from a URL.
The interface defines methods for getting and setting a base path. |
BasePropertiesConfiguration.java | Class | loads the configuration from a properties file. |
ClassPropertiesConfiguration.java | Class | Loads the configuration from the classpath utilizing a specified class to get
the classloader from. |
CompositeConfiguration.java | Class | This Configuration class allows you to add multiple different types of Configuration
to this CompositeConfiguration. |
Configuration.java | Interface | Configuration interface. |
ConfigurationConverter.java | Class | Configuration converter. |
ConfigurationFactory.java | Class | Factory class to create a CompositeConfiguration from a .xml file using
Digester. |
ConfigurationKey.java | Class | A simple class that supports creation of and iteration on complex
configuration keys.
For key creation the class works similar to a StringBuffer: There are
several appendXXXX() methods with which single parts
of a key can be constructed. |
ConfigurationUtils.java | Class | Miscellaneous utility methods for configurations. |
ConfigurationXMLDocument.java | Class | A helper class that supports XML-like processing for configuration
objects.
This class provides a set of methods that all have something to do with
treating a Configuration object as a XML document. |
ConfigurationXMLReader.java | Class | A base class for "faked" XMLReader classes
that transform a configuration object in a set of SAX parsing events.
This class provides dummy implementations for most of the methods
defined in the XMLReader interface that are not used for this
special purpose. |
DOM4JConfiguration.java | Class | Reads a XML configuration file.
To retrieve the value of an attribute of an element, use
X.Y.Z[@attribute] . |
HierarchicalConfiguration.java | Class | A specialized configuration class that extends its base class by the
ability of keeping more structure in the stored properties.
There are some sources of configuration data that cannot be stored
very well in a BaseConfiguration object because then their
structure is lost. |
HierarchicalConfigurationConverter.java | Class | A base class for converters that transform a normal configuration
object into a hierarchical configuration.
This class provides a default mechanism for iterating over the keys in a
configuration and to throw corresponding element start and end events. |
HierarchicalConfigurationXMLReader.java | Class | A specialized SAX2 XML parser that "parses" hierarchical
configuration objects.
This class mimics to be a SAX conform XML parser. |
HierarchicalDOM4JConfiguration.java | Class | A specialized hierarchical configuration class that is able to parse
XML documents using DOM4J.
The parsed document will be stored keeping its structure. |
JNDIConfiguration.java | Class | This Configuration class allows you to interface with a JNDI datasource. |
PropertiesConfiguration.java | Class | This is the "classic" Properties loader which loads the values from
a single or multiple files (which can be chained with "include =".
All given path references are either absolute or relative to the
file name supplied in the Constructor.
In this class, empty PropertyConfigurations can be built, properties
added and later saved. |
XMLConfiguration.java | Class | Base class for reading an XML configuration file. |