Class RoleHistory

java.lang.Object
com.strongdm.api.RoleHistory

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

    • RoleHistory

      public RoleHistory()
  • Method Details

    • getActivityId

      public String getActivityId()
      The unique identifier of the Activity that produced this change to the Role. 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 Role. May be empty for some system-initiated updates.
    • getDeletedAt

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

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

      public Role getRole()
      The complete Role state at this time.
    • setRole

      public void setRole(Role in)
      The complete Role state at this time.
    • getTimestamp

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

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