1 8 9 package collections.ship.marshal; 10 11 import com.sleepycat.bind.tuple.TupleInput; 12 import com.sleepycat.bind.tuple.TupleOutput; 13 14 25 interface MarshalledEntity { 26 27 30 void marshalPrimaryKey(TupleOutput keyOutput); 31 32 36 void unmarshalPrimaryKey(TupleInput keyInput); 37 38 41 boolean marshalSecondaryKey(String keyName, TupleOutput keyOutput); 42 } 43 | Popular Tags |