Top Description Methods
java.io

public Interface ObjectInputValidation


Callback interface to allow validation of objects within a graph. Allows an object to be called when a complete graph of objects has been deserialized.
Since
1.1
See Also
ObjectInputStream, ObjectInputStream#registerValidation(java.io.ObjectInputValidation, int)

Method Summary

Modifier and TypeMethod and Description
public void
validateObject()

Validates the object.

Method Detail

validateObjectback to summary
public void validateObject() throws InvalidObjectException

Validates the object.

Exceptions
InvalidObjectException:
If the object cannot validate itself.