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

Quick Search    Search Deep

Package org.apache.ojb.broker.util.configuration.impl

This package contains classes that provide the OJB configuration API.

See:
          Description

Class Summary
ConfigurationAbstractImpl Configuration Base Class that keeps a Properties based configuration persistent in a file.
OjbConfiguration This class contains the runtime configuration of the OJB system.
OjbConfigurator The Configurator for the OJB system.
 

Package org.apache.ojb.broker.util.configuration.impl Description

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