org.springframework.integration.jdbc.util
Class SerializationUtils

java.lang.Object
  extended by org.springframework.integration.jdbc.util.SerializationUtils

public class SerializationUtils
extends java.lang.Object

Static utility to help with serialization.

Author:
Dave Syer

Constructor Summary
SerializationUtils()
           
 
Method Summary
static java.lang.Object deserialize(byte[] bytes)
           
static byte[] serialize(java.lang.Object object)
          Serialize the object provided.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SerializationUtils

public SerializationUtils()
Method Detail

serialize

public static byte[] serialize(java.lang.Object object)
Serialize the object provided.

Parameters:
object - the object to serialize
Returns:
an array of bytes representing the object in a portable fashion

deserialize

public static java.lang.Object deserialize(byte[] bytes)
Parameters:
bytes - a serialized object created
Returns:
the result of deserializing the bytes