01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.io.serializer.impl;
05:
06: import com.tc.io.serializer.api.Serializer;
07:
08: import java.io.IOException;
09: import java.io.ObjectInput;
10: import java.io.ObjectOutput;
11:
12: /**
13: * Long
14: */
15: public final class LongSerializer implements Serializer {
16:
17: public void serializeTo(Object o, ObjectOutput out)
18: throws IOException {
19: out.writeLong(((Long) o).longValue());
20: }
21:
22: public Object deserializeFrom(ObjectInput in) throws IOException {
23: return new Long(in.readLong());
24: }
25:
26: public byte getSerializerID() {
27: return LONG;
28: }
29:
30: }
|