Class IdentityAliasHistory

java.lang.Object
com.strongdm.api.IdentityAliasHistory

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

    • IdentityAliasHistory

      public IdentityAliasHistory()
  • Method Details

    • getActivityId

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

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

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

      public IdentityAlias getIdentityAlias()
      The complete IdentityAlias state at this time.
    • setIdentityAlias

      public void setIdentityAlias(IdentityAlias in)
      The complete IdentityAlias state at this time.
    • getTimestamp

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

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