Package com.db4o.config
Interface ConfigurationItem
-
- All Known Implementing Classes:
DotNetSupportClientServer
,TransparentActivationSupport
,TransparentPersistenceSupport
,UniqueFieldValueConstraint
public interface ConfigurationItem
Implement this interface for configuration items that encapsulate a batch of configuration settings or that need to be applied to ObjectContainers after they are opened.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
apply(InternalObjectContainer container)
Gives a chance for the item to configure the just opened ObjectContainer.void
prepare(Configuration configuration)
Gives a chance for the item to augment the configuration.
-
-
-
Method Detail
-
prepare
void prepare(Configuration configuration)
Gives a chance for the item to augment the configuration.- Parameters:
configuration
- the configuration that the item was added to
-
apply
void apply(InternalObjectContainer container)
Gives a chance for the item to configure the just opened ObjectContainer.- Parameters:
container
- the ObjectContainer to configure
-
-