Record Class UserTaskEntity

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

public record UserTaskEntity(Long key, String flowNodeBpmnId, String bpmnProcessId, String creationTime, String completionTime, String assignee, String state, Long formKey, Long processDefinitionId, Long processInstanceId, Long flowNodeInstanceId, String tenantId, String dueDate, String followUpDate, List<String> candidateGroups, List<String> candidateUsers, String externalFormReference, Integer processDefinitionVersion, Map<String,String> customHeaders, Integer priority) extends Record
  • Constructor Details

    • UserTaskEntity

      public UserTaskEntity(Long key, String flowNodeBpmnId, String bpmnProcessId, String creationTime, String completionTime, String assignee, String state, Long formKey, Long processDefinitionId, Long processInstanceId, Long flowNodeInstanceId, String tenantId, String dueDate, String followUpDate, List<String> candidateGroups, List<String> candidateUsers, String externalFormReference, Integer processDefinitionVersion, Map<String,String> customHeaders, Integer priority)
      Creates an instance of a UserTaskEntity record class.
      Parameters:
      key - the value for the key record component
      flowNodeBpmnId - the value for the flowNodeBpmnId record component
      bpmnProcessId - the value for the bpmnProcessId record component
      creationTime - the value for the creationTime record component
      completionTime - the value for the completionTime record component
      assignee - the value for the assignee record component
      state - the value for the state record component
      formKey - the value for the formKey record component
      processDefinitionId - the value for the processDefinitionId record component
      processInstanceId - the value for the processInstanceId record component
      flowNodeInstanceId - the value for the flowNodeInstanceId record component
      tenantId - the value for the tenantId record component
      dueDate - the value for the dueDate record component
      followUpDate - the value for the followUpDate record component
      candidateGroups - the value for the candidateGroups record component
      candidateUsers - the value for the candidateUsers record component
      externalFormReference - the value for the externalFormReference record component
      processDefinitionVersion - the value for the processDefinitionVersion record component
      customHeaders - the value for the customHeaders record component
      priority - the value for the priority 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
    • flowNodeBpmnId

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

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

      public String creationTime()
      Returns the value of the creationTime record component.
      Returns:
      the value of the creationTime record component
    • completionTime

      public String completionTime()
      Returns the value of the completionTime record component.
      Returns:
      the value of the completionTime record component
    • assignee

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

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

      public Long formKey()
      Returns the value of the formKey record component.
      Returns:
      the value of the formKey record component
    • processDefinitionId

      public Long processDefinitionId()
      Returns the value of the processDefinitionId record component.
      Returns:
      the value of the processDefinitionId record component
    • processInstanceId

      public Long processInstanceId()
      Returns the value of the processInstanceId record component.
      Returns:
      the value of the processInstanceId record component
    • flowNodeInstanceId

      public Long flowNodeInstanceId()
      Returns the value of the flowNodeInstanceId record component.
      Returns:
      the value of the flowNodeInstanceId record component
    • tenantId

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

      public String dueDate()
      Returns the value of the dueDate record component.
      Returns:
      the value of the dueDate record component
    • followUpDate

      public String followUpDate()
      Returns the value of the followUpDate record component.
      Returns:
      the value of the followUpDate record component
    • candidateGroups

      public List<String> candidateGroups()
      Returns the value of the candidateGroups record component.
      Returns:
      the value of the candidateGroups record component
    • candidateUsers

      public List<String> candidateUsers()
      Returns the value of the candidateUsers record component.
      Returns:
      the value of the candidateUsers record component
    • externalFormReference

      public String externalFormReference()
      Returns the value of the externalFormReference record component.
      Returns:
      the value of the externalFormReference record component
    • processDefinitionVersion

      public Integer processDefinitionVersion()
      Returns the value of the processDefinitionVersion record component.
      Returns:
      the value of the processDefinitionVersion record component
    • customHeaders

      public Map<String,String> customHeaders()
      Returns the value of the customHeaders record component.
      Returns:
      the value of the customHeaders record component
    • priority

      public Integer priority()
      Returns the value of the priority record component.
      Returns:
      the value of the priority record component