Annotation Type SoftDelete
-
@Target(TYPE) @Retention(RUNTIME) public @interface SoftDelete
Extension 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 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.StringindexedWhether the soft delete column is indexed.
-