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(org.joda.time.DateTime value)
          Set the date the object was created.
 void setLastModifiedBy(Object value)
          Set the last modifier of the object.
 void setLastModifiedDate(org.joda.time.DateTime value)
          Set the last modification date.
 

Method Detail

setCreatedBy

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

Parameters:
value -

setCreatedDate

void setCreatedDate(org.joda.time.DateTime 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(org.joda.time.DateTime value)
Set the last modification date.

Parameters:
value -

Spring Data Core

Copyright © 2011-2013-2013 Pivotal. All Rights Reserved.