Class ApprovalWorkflowHistory

java.lang.Object
com.strongdm.api.ApprovalWorkflowHistory

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

    • ApprovalWorkflowHistory

      public ApprovalWorkflowHistory()
  • Method Details

    • getActivityId

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

      public ApprovalWorkflow getApprovalWorkflow()
      The complete ApprovalWorkflow state at this time.
    • setApprovalWorkflow

      public void setApprovalWorkflow(ApprovalWorkflow in)
      The complete ApprovalWorkflow state at this time.
    • getDeletedAt

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

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

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

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