Class AuditingEntityCallback
java.lang.Object
org.springframework.data.cassandra.core.mapping.event.AuditingEntityCallback
- All Implemented Interfaces:
Ordered
,BeforeConvertCallback<Object>
,EntityCallback<Object>
public class AuditingEntityCallback
extends Object
implements BeforeConvertCallback<Object>, Ordered
EntityCallback
to populate auditing related fields on an entity about to be saved.- Since:
- 2.2
- Author:
- Mark Paluch
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
ConstructorDescriptionAuditingEntityCallback
(ObjectFactory<IsNewAwareAuditingHandler> auditingHandlerFactory) Creates a newAuditingEntityCallback
using the givenMappingContext
andAuditingHandler
provided by the givenObjectFactory
. -
Method Summary
Modifier and TypeMethodDescriptionint
getOrder()
onBeforeConvert
(Object entity, com.datastax.oss.driver.api.core.CqlIdentifier tableName) Entity callback method invoked before a domain object is converted to be persisted.
-
Constructor Details
-
AuditingEntityCallback
Creates a newAuditingEntityCallback
using the givenMappingContext
andAuditingHandler
provided by the givenObjectFactory
.- Parameters:
auditingHandlerFactory
- must not be null.
-
-
Method Details
-
onBeforeConvert
public Object onBeforeConvert(Object entity, com.datastax.oss.driver.api.core.CqlIdentifier tableName) Description copied from interface:BeforeConvertCallback
Entity callback method invoked before a domain object is converted to be persisted. Can return either the same or a modified instance of the domain object.- Specified by:
onBeforeConvert
in interfaceBeforeConvertCallback<Object>
- Parameters:
entity
- the domain object to save.tableName
- name of the table.- Returns:
- the domain object to be persisted.
-
getOrder
public int getOrder()
-