00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 package com.sleepycat.bind.serial;
00011
00012 import java.io.ObjectStreamClass;
00013
00014 import com.sleepycat.db.DatabaseException;
00015
00035 public interface ClassCatalog {
00036
00040 public void close()
00041 throws DatabaseException;
00042
00057 public byte[] getClassID(ObjectStreamClass classDesc)
00058 throws DatabaseException, ClassNotFoundException;
00059
00070 public ObjectStreamClass getClassFormat(byte[] classID)
00071 throws DatabaseException, ClassNotFoundException;
00072 }