Spring Data Core

org.springframework.data.auditing
Interface AuditableBeanWrapper


public interface AuditableBeanWrapper

Interface to abstract the ways setting the auditing information can be implemented.

Since:
1.5
Author:
Oliver Gierke

Method Summary
 void setCreatedBy(Object value)
          Set the creator of the object.
 void setCreatedDate(Calendar value)
          Set the date the object was created.
 void setLastModifiedBy(Object value)
          Set the last modifier of the object.
 void setLastModifiedDate(Calendar value)
          Set the last modification date.
 

Method Detail

setCreatedBy

void setCreatedBy(Object value)
Set the creator of the object.

Parameters:
value -

setCreatedDate

void setCreatedDate(Calendar value)
Set the date the object was created.

Parameters:
value -

setLastModifiedBy

void setLastModifiedBy(Object value)
Set the last modifier of the object.

Parameters:
value -

setLastModifiedDate

void setLastModifiedDate(Calendar value)
Set the last modification date.

Parameters:
value -

Spring Data Core

Copyright © 2011-2014–2014 Pivotal Software, Inc.. All rights reserved.