00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 package collections.ship.marshal;
00011
00012 import com.sleepycat.bind.tuple.TupleInput;
00013 import com.sleepycat.bind.tuple.TupleOutput;
00014
00024 public class SupplierKey implements MarshalledKey {
00025
00026 private String number;
00027
00028 public SupplierKey(String number) {
00029
00030 this.number = number;
00031 }
00032
00033 public final String getNumber() {
00034
00035 return number;
00036 }
00037
00038 public String toString() {
00039
00040 return "[SupplierKey: number=" + number + ']';
00041 }
00042
00043
00044
00045 SupplierKey() {
00046
00047
00048
00049 }
00050
00051 public void unmarshalKey(TupleInput keyInput) {
00052
00053 this.number = keyInput.readString();
00054 }
00055
00056 public void marshalKey(TupleOutput keyOutput) {
00057
00058 keyOutput.writeString(this.number);
00059 }
00060 }