Class AbstractAuditable<U,PK extends Serializable>

java.lang.Object
org.springframework.data.jpa.domain.AbstractPersistable<PK>
org.springframework.data.jpa.domain.AbstractAuditable<U,PK>
Type Parameters:
U - the auditing type. Typically some kind of user.
PK - the type of the auditing type's identifier.
All Implemented Interfaces:
Auditable<U,PK,LocalDateTime>, Persistable<PK>

@MappedSuperclass public abstract class AbstractAuditable<U,PK extends Serializable> extends AbstractPersistable<PK> implements Auditable<U,PK,LocalDateTime>
Abstract base class for auditable entities. Stores the audition values in persistent fields.
Author:
Oliver Gierke, Christoph Strobl, Mark Paluch