| |
|
| java.lang.Object com.rift.coad.lib.common.ObjectSerializer
ObjectSerializer | public class ObjectSerializer (Code) | | This class is responsible for serializing and deserializing objects.
author: Brett Chaldecott |
Inner Class :public static class ClassLoaderObjectInputStream extends ObjectInputStream | |
Method Summary | |
public static Object | deserialize(byte[] input) This method serializes the object passed to it. | public static byte[] | serialize(Object ref) This method serializes the object passed to it. |
deserialize | public static Object deserialize(byte[] input) throws CommonException(Code) | | This method serializes the object passed to it.
A byte array of the object. Parameters: ref - The reference to the object to serialize. exception: CommonException - |
serialize | public static byte[] serialize(Object ref) throws CommonException(Code) | | This method serializes the object passed to it.
A byte array of the object. Parameters: ref - The reference to the object to serialize. exception: CommonException - |
|
|
|