Annotation Type PostLoad


  • @Target(METHOD)
    @Retention(RUNTIME)
    public @interface PostLoad
    Annotation to mark a method to be executed after the loading of an entity view. A method annotated with @PostLoad must define no or a single parameter of the type EntityViewManager. There may only be one method in a class annotated with @PostLoad and it must return void. Super type methods annotated with @PostLoad are ignored if an entity view defines a @PostLoad method.
    Since:
    1.5.0
    Author:
    Christian Beikov