Interface AuditWriter
- All Known Implementing Classes:
DeleteCoordinatorAudit, InsertCoordinatorAudit, MergeCoordinatorAudit, UpdateCoordinatorAudit
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Contract for writing a single entity audit row to the
audit table at transaction completion.
- Since:
- 7.4
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidwriteAuditRow(EntityKey entityKey, Object entity, Object[] values, ModificationType modificationType, SharedSessionContractImplementor session) Write an audit row for the given entity state and modification type.
-
Method Details