Package com.db4o.config
Interface EmbeddedConfigurationItem
- 
 public interface EmbeddedConfigurationItemImplement this interface for configuration items that encapsulate a batch of configuration settings or that need to be applied to EmbeddedObjectContainers after they are opened.- Since:
- 7.12
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapply(EmbeddedObjectContainer db)Gives a chance for the item to configure the just opened ObjectContainer.voidprepare(EmbeddedConfiguration configuration)Gives a chance for the item to augment the configuration.
 
- 
- 
- 
Method Detail- 
preparevoid prepare(EmbeddedConfiguration configuration) Gives a chance for the item to augment the configuration.- Parameters:
- configuration- the configuration that the item was added to
 
 - 
applyvoid apply(EmbeddedObjectContainer db) Gives a chance for the item to configure the just opened ObjectContainer.- Parameters:
- container- the ObjectContainer to configure
 
 
- 
 
-