Package com.sleepycat.bind.serial
Class StoredClassCatalog
java.lang.Object
com.sleepycat.bind.serial.StoredClassCatalog
- All Implemented Interfaces:
ClassCatalog
A
ClassCatalog that is stored in a Database.
A single StoredClassCatalog object is normally used along
with a set of databases that stored serialized objects.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStoredClassCatalog(Database database) Creates a catalog based on a given database. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Close a catalog database and release any cached resources.getClassFormat(byte[] classID) Return the ObjectStreamClass for the given class ID.byte[]getClassID(ObjectStreamClass classFormat) Return the class ID for the current version of the given class description.For BDB JE, returns the ClassLoader property of the catalog database environment.
-
Constructor Details
-
StoredClassCatalog
Creates a catalog based on a given database. To save resources, only a single catalog object should be used for each unique catalog database.- Parameters:
database- an open database to use as the class catalog. It must be a BTREE database and must not allow duplicates.- Throws:
DatabaseException- if an error occurs accessing the database.IllegalArgumentException- if the database is not a BTREE database or if it configured to allow duplicates.
-
-
Method Details
-
close
Description copied from interface:ClassCatalogClose a catalog database and release any cached resources.- Specified by:
closein interfaceClassCatalog- Throws:
DatabaseException
-
getClassID
public byte[] getClassID(ObjectStreamClass classFormat) throws DatabaseException, ClassNotFoundException Description copied from interface:ClassCatalogReturn the class ID for the current version of the given class description. This is used for storing in serialization streams in place of a full class descriptor, since it is much more compact. To get back the ObjectStreamClass for a class ID, callClassCatalog.getClassFormat(byte[]). This function causes a new class ID to be assigned if the class description has changed.- Specified by:
getClassIDin interfaceClassCatalog- Parameters:
classFormat- The class description for which to return the class ID.- Returns:
- The class ID for the current version of the class.
- Throws:
DatabaseExceptionClassNotFoundException
-
getClassFormat
public ObjectStreamClass getClassFormat(byte[] classID) throws DatabaseException, ClassNotFoundException Description copied from interface:ClassCatalogReturn the ObjectStreamClass for the given class ID. This may or may not be the current class format, depending on whether the class has changed since the class ID was generated.- Specified by:
getClassFormatin interfaceClassCatalog- Parameters:
classID- The class ID for which to return the class format.- Returns:
- The class format for the given class ID, which may or may not represent the current version of the class.
- Throws:
DatabaseExceptionClassNotFoundException
-
getClassLoader
For BDB JE, returns the ClassLoader property of the catalog database environment. This ensures that the Environment's ClassLoader property is used for loading all user-supplied classes.For BDB, this method returns null because no Environment ClassLoader property is available. This method may be overridden to return a ClassLoader.
- Specified by:
getClassLoaderin interfaceClassCatalog
-