| IBM WebSphere Extended Deployment (XD)TM
Release 6.0.1 |
setObjectTransformer(ObjectTransformer)
Method Summary | |
---|---|
public
void | serializeKey(java.lang.Object, java.io.ObjectOutputStream)
This method will write the value to the specified stream. The.
|
public
void | serializeValue(java.lang.Object, java.io.ObjectOutputStream)
This method will write the value to the specified stream. The.
|
public
Object | inflateKey(java.io.ObjectInputStream)
This method reads a Key object from the stream. The default implementation.
|
public
Object | inflateValue(java.io.ObjectInputStream)
This method takes the Serializable version of the value and returns the actual
value object.
|
public
Object | copyValue(java.lang.Object)
This allows a custom copy method to be used whenever the core needs to clone a value.
|
public
Object | copyKey(java.lang.Object)
This is used to copy the key efficiently. This is called mainly for safety so that if the application.
|
Method Detail |
public void serializeKey( | Object key , | ObjectOutputStream stream )
|
key
-
the key object
stream
-
the ObjectOutputStream object to write the key object to
java.io.IOException
public void serializeValue( | Object value , | ObjectOutputStream stream )
|
value
-
the value object
stream
-
the ObjectOutputStream object to write the value object to
java.io.IOException
public Object inflateKey( | ObjectInputStream stream )
|
stream
-
The stream where the key was serialized using the serializeKey method.
java.io.IOExceptionjava.lang.ClassNotFoundException
public Object inflateValue( | ObjectInputStream stream )
|
stream
-
The stream where the value was serialized using the serializeValue method.
java.io.IOExceptionjava.lang.ClassNotFoundException
public Object copyValue( | Object value )
|
public Object copyKey( | Object key )
|
key
-
The key to copy
| IBM WebSphere Extended Deployment (XD)TM
Release 6.0.1 |