Interface RecordedUpdate

All Known Subinterfaces:
DevelopmentProposalContract

public interface RecordedUpdate
This 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

    Modifier and Type
    Method
    Description
    The date and time of when the object was last inserted or updated
    The user who last inserted or updated the object
  • Method Details

    • 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