Package org.kuali.coeus.sys.api.model
Interface RecordedUpdate
-
- All Known Subinterfaces:
DevelopmentProposalContract
public interface RecordedUpdateThis interface can be used to identify a user and timestamp regarding when the object was last modified (usually in regards to object persistence). If the object has just be persisted, then these fields will record the initial creator of the object otherwise it records information about the last update.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetUpdateTimestamp()The date and time of when the object was last inserted or updatedStringgetUpdateUser()The user who last inserted or updated the object
-
-
-
Method Detail
-
getUpdateTimestamp
Date getUpdateTimestamp()
The date and time of when the object was last inserted or updated- Returns:
- the date or null if the object is new
-
getUpdateUser
String getUpdateUser()
The user who last inserted or updated the object- Returns:
- the user or null if the object is new
-
-