Annotation Type Ignore


@Retention(RUNTIME)
@Target(FIELD)
public @interface Ignore

Flags a field of a POJO entity that should be completely ignored by Objectify. It will not be saved and it will not be loaded. This is equivalent to the JPA @Transient annotation.

Author:
Jeff Schnitzer