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: * Boolean
14: */
15: public final class BooleanSerializer implements Serializer {
16:
17: public void serializeTo(Object o, ObjectOutput out)
18: throws IOException {
19: boolean b = ((Boolean) o).booleanValue();
20: out.writeBoolean(b);
21: }
22:
23: public Object deserializeFrom(ObjectInput in) throws IOException {
24: return new Boolean(in.readBoolean());
25: }
26:
27: public byte getSerializerID() {
28: return BOOLEAN;
29: }
30:
31: }
|