Annotation Type OnLoad


  • @Retention(RUNTIME)
    @Target(METHOD)
    public @interface OnLoad

    When placed on a method on a POJO entity, that method will be called just after being loaded from the datastore. Analogous to the JPA @PostLoad annotation.

    The method can optionally receive one parameter, an Objectify instance.

    Author:
    Jeff Schnitzer