entryCacheDB = entryCacheEnv.openDatabase(null, ENTRYCACHEDBNAME,
entryCacheDBConfig);
entryCacheClassDB = entryCacheEnv.openDatabase(null,
INDEXCLASSDBNAME, entryCacheDBConfig);
// Instantiate the class catalog
classCatalog = new StoredClassCatalog(entryCacheClassDB);
//This line causes an unchecked call error if the SuppressWarnings
//annotation is removed at the beginning of this method.
entryCacheDataBinding = new SerialBinding(classCatalog,
FileSystemEntryCacheIndex.class);
}