# Annotation: com.pnfsoftware.jeb.util.serialization.annotations.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](SerCustomRead) or [SerCustomInit](SerCustomInit), methods annotated with [SerCustomInitPostGraph](SerCustomInitPostGraph) are called in any order, regardless of object hierarchies.

