Package com.db4o.config
Interface NameProvider
-
- All Known Implementing Classes:
SimpleNameProvider
public interface NameProvider
A provider for custom database names.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
name(ObjectContainer db)
Derives a name for the givenObjectContainer
.
-
-
-
Method Detail
-
name
java.lang.String name(ObjectContainer db)
Derives a name for the givenObjectContainer
. This method will be called when database startup has completed, i.e. the method will see a completely initializedObjectContainer
. Any code invoked during the startup process (for exampleConfigurationItem
instances) will still see the default naming.
-
-