Record Class WorkflowInstanceEntity

java.lang.Object
java.lang.Record
com.yworkflow.instance.repository.WorkflowInstanceEntity
Record Components:
workflowInstanceId - the unique identifier for this workflow instance
status - the current status of the workflow instance
workflowDefinitionId - the ID of the workflow definition this instance belongs to
states - the list of current state instances
historyStates - the list of historical state instances
attributes - the list of attributes associated with this workflow instance

public record WorkflowInstanceEntity(String workflowInstanceId, String status, String workflowDefinitionId, List<StateInstanceEntity> states, List<StateInstanceEntity> historyStates, List<AttributeEntity> attributes) extends Record
Represents a workflow instance entity in the repository layer. WorkflowInstanceEntity encapsulates all the data needed to persist and retrieve a workflow instance, including its current state, history, and attributes.
Since:
1.0
See Also:
  • Constructor Details

  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • workflowInstanceId

      public String workflowInstanceId()
      Returns the value of the workflowInstanceId record component.
      Returns:
      the value of the workflowInstanceId record component
    • status

      public String status()
      Returns the value of the status record component.
      Returns:
      the value of the status record component
    • workflowDefinitionId

      public String workflowDefinitionId()
      Returns the value of the workflowDefinitionId record component.
      Returns:
      the value of the workflowDefinitionId record component
    • states

      public List<StateInstanceEntity> states()
      Returns the value of the states record component.
      Returns:
      the value of the states record component
    • historyStates

      public List<StateInstanceEntity> historyStates()
      Returns the value of the historyStates record component.
      Returns:
      the value of the historyStates record component
    • attributes

      public List<AttributeEntity> attributes()
      Returns the value of the attributes record component.
      Returns:
      the value of the attributes record component