com.ibm.ws.serialization

Interface DeserializationObjectResolver


  1. public interface DeserializationObjectResolver
Allows resolving objects after deserialization. Typical scenarios are:

Method Summary

Modifier and Type Method and Description
  1. java.lang.Object
resolveObject(java.lang.Object object)
Resolves an object after deserialization.

Method Detail

resolveObject

  1. java.lang.Object resolveObject( java.lang.Object object)
Resolves an object after deserialization. If the implementation does not recognize the object then null should be returned.

Implementations are strongly encouraged to annotate the parameter with Sensitive to avoid tracing user data.

Parameters:
object - the object being resolved
Returns:
the resolved object, or null if no resolution is needed