Package org.apache.commons.configuration2.builder
This package contains the implementations of configuration builder classes used to create new
Configuration
objects.
In Commons Configuration, configuration builders are responsible for the creation and initialization of
Configuration
objects. The typical use case is that a builder is created and configured with initialization
parameters defining specific settings for the configuration to be created. The builder can then be stored centrally.
Each component requiring access to configuration information queries the builder for its managed
Configuration
and can read or write properties as its pleasure.
This package contains a number of interfaces that reflect the initialization parameters available for supported configuration implementations. These interfaces are not intended to be implemented by client code! When new features are added to the represented configuration classes corresponding new methods will be added to them. This can happen even in minor releases.
-
ClassDescriptionAn implementation of
BuilderParameters
which handles the parameters of aConfigurationBuilder
common to all concreteConfiguration
implementations.Definition of a properties interface for basic parameters which are supported by allConfigurationBuilder
implementations derived fromBasicConfigurationBuilder
.BasicConfigurationBuilder<T extends ImmutableConfiguration>An implementation of theConfigurationBuilder
interface which is able to create different concreteImmutableConfiguration
implementations based on reflection.A class that allows the creation of configuration objects wrapping aConfigurationBuilder
.An enumeration class with different options for supporting theEventSource
interface in generatedImmutableConfiguration
proxies.An interface to be implemented by objects which can be used to parameterize aConfigurationBuilder
.ConfigurationBuilder<T extends ImmutableConfiguration>Definition of an interface for objects that can createImmutableConfiguration
orConfiguration
objects of a specific type.A base event class for events generated by aConfigurationBuilder
.A specialized event class which is generated by aConfigurationBuilder
when a result configuration has been created.A specialized implementation ofDefaultParametersHandler
that copies the properties of aBuilderParameters
object (passed at construction time) onto the object to be initialized.A specialized parameters object for database configurations.Definition of a properties interface for parameters of a database configuration.Definition of an interface for setting default values for specific configuration parameter objects.A class for managing a set ofDefaultParametersHandler
objects.A default implementation of theReloadingDetectorFactory
interface.A specialized parameters implementation forBasicConfigurationBuilder
which allows for a convenient event listener initialization.Definition of an interface that is evaluated by aConfigurationBuilder
to initialize event listeners.An implementation ofBuilderParameters
which contains parameters related toConfiguration
implementations that are loaded from files.Definition of a properties interface for parameters of file-based configurations.A specializedConfigurationBuilder
implementation which can handle configurations read from aFileHandler
.A specialized parameters object for hierarchical configurations.Definition of a parameters interface for hierarchical configurations.A specialized parameters class for INI configuration.Definition of a parameters interface for INI configurations.A specialized parameters object for JNDI configurations.Definition of a properties interface for parameters of a JNDI configuration.A specialized parameter class for configuringPropertiesConfiguration
instances.Definition of a parameters interface for properties configurations.Definition of an interface for objects which can create aReloadingDetector
.A specializedConfigurationBuilder
implementation which can handle configurations read from aFileHandler
and supports reloading.A specialized parameters class for XML configuration.Definition of a parameters interface for XML configurations.