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: * Objects
14: */
15: public final class ObjectSerializer implements Serializer {
16: public void serializeTo(Object o, ObjectOutput out)
17: throws IOException {
18: out.writeObject(o);
19: }
20:
21: public Object deserializeFrom(ObjectInput in) throws IOException,
22: ClassNotFoundException {
23: return in.readObject();
24: }
25:
26: public byte getSerializerID() {
27: return OBJECT;
28: }
29: }
|