|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hibernate.envers.strategy.ValidityAuditStrategy
public class ValidityAuditStrategy
Audit strategy which persists and retrieves audit information using a validity algorithm, based on the start-revision and end-revision of a row in the audit tables.
This algorithm works as follows:
This has a few important consequences that need to be judged against against each other:
Constructor Summary | |
---|---|
ValidityAuditStrategy()
|
Method Summary | |
---|---|
void |
addAssociationAtRevisionRestriction(QueryBuilder rootQueryBuilder,
String revisionProperty,
String revisionEndProperty,
boolean addAlias,
MiddleIdData referencingIdData,
String versionsMiddleEntityName,
String eeOriginalIdPropertyPath,
String revisionPropertyPath,
String originalIdPropertyName,
MiddleComponentData... componentDatas)
Update the rootQueryBuilder with an extra WHERE clause to restrict the revision for a middle-entity association. |
void |
addEntityAtRevisionRestriction(GlobalConfiguration globalCfg,
QueryBuilder rootQueryBuilder,
String revisionProperty,
String revisionEndProperty,
boolean addAlias,
MiddleIdData idData,
String revisionPropertyPath,
String originalIdPropertyName,
String alias1,
String alias2)
Update the rootQueryBuilder with an extra WHERE clause to restrict the revision for a two-entity relation. |
void |
perform(Session session,
String entityName,
AuditConfiguration auditCfg,
Serializable id,
Object data,
Object revision)
Perform the persistence of audited data for regular entities. |
void |
performCollectionChange(Session session,
AuditConfiguration auditCfg,
PersistentCollectionChangeData persistentCollectionChangeData,
Object revision)
Perform the persistence of audited data for collection ("middle") entities. |
void |
setRevisionTimestampGetter(Getter revisionTimestampGetter)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ValidityAuditStrategy()
Method Detail |
---|
public void perform(Session session, String entityName, AuditConfiguration auditCfg, Serializable id, Object data, Object revision)
AuditStrategy
perform
in interface AuditStrategy
session
- Session, which can be used to persist the data.entityName
- Name of the entity, in which the audited change happensauditCfg
- Audit configurationid
- Id of the entity.data
- Audit data to persistrevision
- Current revision datapublic void performCollectionChange(Session session, AuditConfiguration auditCfg, PersistentCollectionChangeData persistentCollectionChangeData, Object revision)
AuditStrategy
performCollectionChange
in interface AuditStrategy
session
- Session, which can be used to persist the data.auditCfg
- Audit configurationpersistentCollectionChangeData
- Collection change data to be persisted.revision
- Current revision datapublic void addEntityAtRevisionRestriction(GlobalConfiguration globalCfg, QueryBuilder rootQueryBuilder, String revisionProperty, String revisionEndProperty, boolean addAlias, MiddleIdData idData, String revisionPropertyPath, String originalIdPropertyName, String alias1, String alias2)
AuditStrategy
DefaultAuditStrategy
a subquery is created:
e.revision = (SELECT max(...) ...)
ValidityAuditStrategy
the revision-end column is used:
e.revision <= :revision and (e.endRevision > :revision or e.endRevision is null)
addEntityAtRevisionRestriction
in interface AuditStrategy
globalCfg
- the GlobalConfiguration
rootQueryBuilder
- the QueryBuilder
that will be updatedrevisionProperty
- property of the revision columnrevisionEndProperty
- property of the revisionEnd column (only used for ValidityAuditStrategy
)addAlias
- boolean
indicator if a left alias is neededidData
- id-information for the two-entity relation (only used for DefaultAuditStrategy
)revisionPropertyPath
- path of the revision property (only used for ValidityAuditStrategy
)originalIdPropertyName
- name of the id property (only used for ValidityAuditStrategy
)alias1
- an alias used for subquery (only used for ValidityAuditStrategy
)alias2
- an alias used for subquery (only used for ValidityAuditStrategy
)public void addAssociationAtRevisionRestriction(QueryBuilder rootQueryBuilder, String revisionProperty, String revisionEndProperty, boolean addAlias, MiddleIdData referencingIdData, String versionsMiddleEntityName, String eeOriginalIdPropertyPath, String revisionPropertyPath, String originalIdPropertyName, MiddleComponentData... componentDatas)
AuditStrategy
DefaultAuditStrategy
a subquery is created:
e.revision = (SELECT max(...) ...)
ValidityAuditStrategy
the revision-end column is used:
e.revision <= :revision and (e.endRevision > :revision or e.endRevision is null)
addAssociationAtRevisionRestriction
in interface AuditStrategy
rootQueryBuilder
- the QueryBuilder
that will be updatedrevisionProperty
- property of the revision columnrevisionEndProperty
- property of the revisionEnd column (only used for ValidityAuditStrategy
)addAlias
- boolean
indicator if a left alias is neededreferencingIdData
- id-information for the middle-entity association (only used for DefaultAuditStrategy
)versionsMiddleEntityName
- name of the middle-entityeeOriginalIdPropertyPath
- name of the id property (only used for ValidityAuditStrategy
)revisionPropertyPath
- path of the revision property (only used for ValidityAuditStrategy
)originalIdPropertyName
- name of the id property (only used for ValidityAuditStrategy
)componentDatas
- information about the middle-entity relationpublic void setRevisionTimestampGetter(Getter revisionTimestampGetter)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |