@Retention(value=RUNTIME) @Target(value=METHOD) public @interface OnSave
When placed on a method on a POJO entity, that method will be called just prior to being saved in the datastore. Analogous to the JPA @PrePersist annotation.
The method can optionally receive one parameter, an Objectify instance.
Copyright © 2015. All rights reserved.