public interface EnversSettings
Configuration property names.
| Modifier and Type | Field and Description |
|---|---|
static String |
ALLOW_IDENTIFIER_REUSE
Guarantees proper validity audit strategy behavior when application reuses identifiers of deleted entities.
|
static String |
AUDIT_STRATEGY
Audit strategy.
|
static String |
AUDIT_STRATEGY_VALIDITY_END_REV_FIELD_NAME
Column name that will hold the end revision number in audit entities.
|
static String |
AUDIT_STRATEGY_VALIDITY_REVEND_TIMESTAMP_FIELD_NAME
Column name of the timestamp of the end revision until which the data was valid.
|
static String |
AUDIT_STRATEGY_VALIDITY_STORE_REVEND_TIMESTAMP
Store the timestamp of the end revision, until which the data was valid,
in addition to the end revision itself.
|
static String |
AUDIT_TABLE_PREFIX
Audit table prefix.
|
static String |
AUDIT_TABLE_SUFFIX
Audit table suffix.
|
static String |
DEFAULT_CATALOG
Default name of the catalog containing audit tables.
|
static String |
DEFAULT_SCHEMA
Default name of the schema containing audit tables.
|
static String |
DO_NOT_AUDIT_OPTIMISTIC_LOCKING_FIELD
Treats optimistic locking properties as unversioned.
|
static String |
EMBEDDABLE_SET_ORDINAL_FIELD_NAME
Name of column used for storing ordinal of the change in sets of embeddable elements.
|
static String |
GLOBAL_WITH_MODIFIED_FLAG
Globally activates modified properties flag feature.
|
static String |
MODIFIED_FLAG_SUFFIX
Suffix of modified flag columns.
|
static String |
ORIGINAL_ID_PROP_NAME
Original id property name name.
|
static String |
REVISION_FIELD_NAME
Revision field name.
|
static String |
REVISION_LISTENER
Fully qualified class name of user defined revision listener.
|
static String |
REVISION_ON_COLLECTION_CHANGE
Triggers revision generation when not-owned relation field changes.
|
static String |
REVISION_TYPE_FIELD_NAME
Revision type field name.
|
static String |
STORE_DATA_AT_DELETE
Indicates whether entity data should be stored during removal.
|
static String |
TRACK_ENTITIES_CHANGED_IN_REVISION
Track entity names that have been changed during each revision.
|
static String |
USE_REVISION_ENTITY_WITH_NATIVE_ID
Use revision entity with native identifier generator.
|
static final String REVISION_ON_COLLECTION_CHANGE
Triggers revision generation when not-owned relation field changes. Defaults to true.
static final String DO_NOT_AUDIT_OPTIMISTIC_LOCKING_FIELD
Treats optimistic locking properties as unversioned. Defaults to true.
static final String STORE_DATA_AT_DELETE
Indicates whether entity data should be stored during removal. Defaults to false.
static final String DEFAULT_SCHEMA
Default name of the schema containing audit tables.
static final String DEFAULT_CATALOG
Default name of the catalog containing audit tables.
static final String TRACK_ENTITIES_CHANGED_IN_REVISION
Track entity names that have been changed during each revision. Defaults to false.
static final String USE_REVISION_ENTITY_WITH_NATIVE_ID
Use revision entity with native identifier generator. Defaults to true for backward compatibility.
static final String GLOBAL_WITH_MODIFIED_FLAG
Globally activates modified properties flag feature. Defaults to false.
static final String MODIFIED_FLAG_SUFFIX
Suffix of modified flag columns. Defaults to _MOD.
static final String REVISION_LISTENER
Fully qualified class name of user defined revision listener.
static final String AUDIT_TABLE_PREFIX
Audit table prefix. Empty by default.
static final String AUDIT_TABLE_SUFFIX
Audit table suffix. Defaults to _AUD.
static final String AUDIT_STRATEGY
Audit strategy. Defaults to DefaultAuditStrategy.
static final String REVISION_FIELD_NAME
Revision field name. Defaults to REV.
static final String REVISION_TYPE_FIELD_NAME
Revision type field name. Defaults to REVTYPE.
static final String ORIGINAL_ID_PROP_NAME
Original id property name name. Defaults to originalId.
static final String AUDIT_STRATEGY_VALIDITY_END_REV_FIELD_NAME
Column name that will hold the end revision number in audit entities. Defaults to REVEND.
static final String AUDIT_STRATEGY_VALIDITY_STORE_REVEND_TIMESTAMP
Store the timestamp of the end revision, until which the data was valid,
in addition to the end revision itself. Defaults to false.
static final String AUDIT_STRATEGY_VALIDITY_REVEND_TIMESTAMP_FIELD_NAME
Column name of the timestamp of the end revision until which the data was valid. Defaults to REVEND_TSTMP.
static final String EMBEDDABLE_SET_ORDINAL_FIELD_NAME
Name of column used for storing ordinal of the change in sets of embeddable elements. Defaults to SETORDINAL.
static final String ALLOW_IDENTIFIER_REUSE
Guarantees proper validity audit strategy behavior when application reuses identifiers of deleted entities.
Exactly one row with null end date exists for each identifier.
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.