| java.lang.Object com.sleepycat.bind.serial.StoredClassCatalog
StoredClassCatalog | public class StoredClassCatalog implements ClassCatalog(Code) | | 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.
author: Mark Hayes |
StoredClassCatalog | public StoredClassCatalog(Database database) throws DatabaseException, IllegalArgumentException(Code) | | 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 mustbe a BTREE database and must not allow duplicates. throws: DatabaseException - if an error occurs accessing the database. throws: IllegalArgumentException - if the database is not a BTREE databaseor if it configured to allow duplicates. |
|
|