Class WorkflowHistory

java.lang.Object
com.strongdm.api.WorkflowHistory

public class WorkflowHistory extends Object
WorkflowsHistory provides records of all changes to the state of a Workflow.
  • Constructor Details

    • WorkflowHistory

      public WorkflowHistory()
  • Method Details

    • getActivityId

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

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

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

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

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

      public Workflow getWorkflow()
      The complete Workflow state at this time.
    • setWorkflow

      public void setWorkflow(Workflow in)
      The complete Workflow state at this time.