1 8 9 package com.sleepycat.bind.serial; 10 11 import java.io.ObjectStreamClass ; 12 13 import com.sleepycat.je.DatabaseException; 14 15 34 public interface ClassCatalog { 35 36 39 public void close() 40 throws DatabaseException; 41 42 56 public byte[] getClassID(ObjectStreamClass classDesc) 57 throws DatabaseException, ClassNotFoundException ; 58 59 69 public ObjectStreamClass getClassFormat(byte[] classID) 70 throws DatabaseException, ClassNotFoundException ; 71 } 72 | Popular Tags |