CONTENTS | PREV | NEXT
3.3 The ObjectInputValidation Interface
This interface allows an object to be called when a complete graph of objects has been deserialized. If the object cannot be made valid, it should throw the ObjectInvalidException. Any exception that occurs during a call to validateObject will terminate the validation process, and the InvalidObjectException will be thrown.package java.io; public interface ObjectInputValidation { public void validateObject() throws InvalidObjectException; }
CONTENTS | PREV | NEXT