Package com.db4o.cs.config
Interface ClientConfigurationItem
-
public interface ClientConfigurationItem
Implement this interface for configuration items that encapsulate a batch of configuration settings or that need to be applied to ClientObjectContainers after they are opened.- Since:
- 7.12
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
apply(ExtClient client)
Gives a chance for the item to configure the just opened ObjectContainer.void
prepare(ClientConfiguration configuration)
Gives a chance for the item to augment the configuration.
-
-
-
Method Detail
-
prepare
void prepare(ClientConfiguration configuration)
Gives a chance for the item to augment the configuration.- Parameters:
configuration
- the configuration that the item was added to
-
apply
void apply(ExtClient client)
Gives a chance for the item to configure the just opened ObjectContainer.- Parameters:
client
- the ObjectContainer to configure
-
-