Class GroupHistory

java.lang.Object
com.strongdm.api.GroupHistory

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

    • GroupHistory

      public GroupHistory()
  • Method Details

    • getActivityId

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

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

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

      public Group getGroup()
      The complete Group state at this time.
    • setGroup

      public void setGroup(Group in)
      The complete Group state at this time.
    • getTimestamp

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

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