OJB Configuration package
This package contains classes that provide the OJB configuration API.
The Configuration interface defines lookup-methods to lookup
typed configuration-values.
For example boolean getBoolean(String key, boolean defaultValue)
looks up a boolean value associated with key .
The Configurable interface defines a callback
method configure(Configuration pConfig) .
Implementors of this method may use configuration value from the pConfig
parameter to configure the current instance.
The Configurator interface defines methods for looking up Configurations
and for configuring Configurable instances.
The Exception ConfigurationException is used to signal exceptions
in the configuration process.
Patterns applied:
Callback
Todo:
merge with jakarta commons-configuration API
|