Class NodeHistory

java.lang.Object
com.strongdm.api.NodeHistory

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

    • NodeHistory

      public NodeHistory()
  • Method Details

    • getActivityId

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

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

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

      public Node getNode()
      The complete Node state at this time.
    • setNode

      public void setNode(Node in)
      The complete Node state at this time.
    • getTimestamp

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

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