Record Class FlowNodeInstanceEntity

java.lang.Object
java.lang.Record
io.camunda.service.entities.FlowNodeInstanceEntity

public record FlowNodeInstanceEntity(Long key, Long processInstanceKey, Long processDefinitionKey, String startDate, String endDate, String flowNodeId, String flowNodeName, String treePath, String type, String state, Boolean incident, Long incidentKey, Long scopeKey, String bpmnProcessId, String tenantId) extends Record
  • Constructor Details

    • FlowNodeInstanceEntity

      public FlowNodeInstanceEntity(Long key, Long processInstanceKey, Long processDefinitionKey, String startDate, String endDate, String flowNodeId, String flowNodeName, String treePath, String type, String state, Boolean incident, Long incidentKey, Long scopeKey, String bpmnProcessId, String tenantId)
      Creates an instance of a FlowNodeInstanceEntity record class.
      Parameters:
      key - the value for the key record component
      processInstanceKey - the value for the processInstanceKey record component
      processDefinitionKey - the value for the processDefinitionKey record component
      startDate - the value for the startDate record component
      endDate - the value for the endDate record component
      flowNodeId - the value for the flowNodeId record component
      flowNodeName - the value for the flowNodeName record component
      treePath - the value for the treePath record component
      type - the value for the type record component
      state - the value for the state record component
      incident - the value for the incident record component
      incidentKey - the value for the incidentKey record component
      scopeKey - the value for the scopeKey record component
      bpmnProcessId - the value for the bpmnProcessId record component
      tenantId - the value for the tenantId record component
  • 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.
    • key

      public Long key()
      Returns the value of the key record component.
      Returns:
      the value of the key record component
    • processInstanceKey

      public Long processInstanceKey()
      Returns the value of the processInstanceKey record component.
      Returns:
      the value of the processInstanceKey record component
    • processDefinitionKey

      public Long processDefinitionKey()
      Returns the value of the processDefinitionKey record component.
      Returns:
      the value of the processDefinitionKey record component
    • startDate

      public String startDate()
      Returns the value of the startDate record component.
      Returns:
      the value of the startDate record component
    • endDate

      public String endDate()
      Returns the value of the endDate record component.
      Returns:
      the value of the endDate record component
    • flowNodeId

      public String flowNodeId()
      Returns the value of the flowNodeId record component.
      Returns:
      the value of the flowNodeId record component
    • flowNodeName

      public String flowNodeName()
      Returns the value of the flowNodeName record component.
      Returns:
      the value of the flowNodeName record component
    • treePath

      public String treePath()
      Returns the value of the treePath record component.
      Returns:
      the value of the treePath record component
    • type

      public String type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component
    • state

      public String state()
      Returns the value of the state record component.
      Returns:
      the value of the state record component
    • incident

      public Boolean incident()
      Returns the value of the incident record component.
      Returns:
      the value of the incident record component
    • incidentKey

      public Long incidentKey()
      Returns the value of the incidentKey record component.
      Returns:
      the value of the incidentKey record component
    • scopeKey

      public Long scopeKey()
      Returns the value of the scopeKey record component.
      Returns:
      the value of the scopeKey record component
    • bpmnProcessId

      public String bpmnProcessId()
      Returns the value of the bpmnProcessId record component.
      Returns:
      the value of the bpmnProcessId record component
    • tenantId

      public String tenantId()
      Returns the value of the tenantId record component.
      Returns:
      the value of the tenantId record component