Class RoleResourceHistory

java.lang.Object
com.strongdm.api.RoleResourceHistory

public class RoleResourceHistory extends Object
RoleResourceHistory records the state of a RoleResource at a given point in time, where every change (create or delete) to a RoleResource produces an RoleResourceHistory record.
  • Constructor Details

    • RoleResourceHistory

      public RoleResourceHistory()
  • Method Details

    • getActivityId

      public String getActivityId()
      The unique identifier of the Activity that produced this change to the RoleResource. May be empty for some system-initiated updates.
    • setActivityId

      public void setActivityId(String in)
      The unique identifier of the Activity that produced this change to the RoleResource. May be empty for some system-initiated updates.
    • getDeletedAt

      public Date getDeletedAt()
      If this RoleResource was deleted, the time it was deleted.
    • setDeletedAt

      public void setDeletedAt(Date in)
      If this RoleResource was deleted, the time it was deleted.
    • getRoleResource

      public RoleResource getRoleResource()
      The complete RoleResource state at this time.
    • setRoleResource

      public void setRoleResource(RoleResource in)
      The complete RoleResource state at this time.
    • getTimestamp

      public Date getTimestamp()
      The time at which the RoleResource state was recorded.
    • setTimestamp

      public void setTimestamp(Date in)
      The time at which the RoleResource state was recorded.