| ComparatorClass |
Extension annotation providing for specifying a comparator class against a collection.
|
| CreateTimestamp |
Extension annotation specifying either this field/method or use a surrogate column as storing the creation timestamp for this object.
|
| CreateUser |
Extension annotation specifying either this field/method or use a surrogate column as storing the creation user for this object.
|
| MultiTenant |
Extension annotation allowing for specifying a class as multitenant, meaning that it will have a surrogate column in its table storing the tenant id.
|
| ReadOnly |
Extension annotation allowing for specifying a field as Read-Only (insertable=false, updateable=false) or for specifying a class as Read-Only.
|
| SharedRelation |
Extension annotation providing for marking a relation as "shared" and adding a distinguisher column.
|
| 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).
|
| UpdateTimestamp |
Extension annotation specifying either this field/method or use a surrogate column as storing the update timestamp for this object.
|
| UpdateUser |
Extension annotation specifying either this field/method or use a surrogate column as storing the update user for this object.
|