Annotation Interface SerCustomInitPostGraph


@Target(METHOD) @Retention(RUNTIME) public @interface SerCustomInitPostGraph
The annotated method will be called after a full object graph has been deserialized.

Required prototype:

 private void postInit()
 
Note that the visibility MUST be private to make sure that sub-classes do not accidentally override a custom initializer method of a super-class.

Limitation: Unlike in-line deserializer initializers such as SerCustomRead or SerCustomInit, methods annotated with SerCustomInitPostGraph are called in any order, regardless of object hierarchies.

See Also: