Annotation Type SoftDelete
-
@Target(TYPE) @Retention(RUNTIME) public @interface SoftDeleteExtension annotation allowing for specifying a class as using soft delete, meaning that it will have a surrogate column in its table storing whether it is deleted (rather than deleting it).
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringcolumnName of the soft delete flag column in the table for this class.javax.jdo.annotations.Column[]columnsThe column making up the soft delete indicator.java.lang.StringindexedWhether the soft delete column is indexed.
-