Record Class UserTaskFilter

java.lang.Object
java.lang.Record
io.camunda.service.search.filter.UserTaskFilter
All Implemented Interfaces:
FilterBase

public record UserTaskFilter(List<Long> keys, List<String> elementIds, List<String> bpmnProcessIds, List<String> assignees, List<String> states, List<Long> processInstanceKeys, List<Long> processDefinitionKeys, List<String> candidateUsers, List<String> candidateGroups, List<String> tenantIds, List<VariableValueFilter> variableFilters, String type) extends Record implements FilterBase
  • Constructor Details

    • UserTaskFilter

      public UserTaskFilter(List<Long> keys, List<String> elementIds, List<String> bpmnProcessIds, List<String> assignees, List<String> states, List<Long> processInstanceKeys, List<Long> processDefinitionKeys, List<String> candidateUsers, List<String> candidateGroups, List<String> tenantIds, List<VariableValueFilter> variableFilters, String type)
      Creates an instance of a UserTaskFilter record class.
      Parameters:
      keys - the value for the keys record component
      elementIds - the value for the elementIds record component
      bpmnProcessIds - the value for the bpmnProcessIds record component
      assignees - the value for the assignees record component
      states - the value for the states record component
      processInstanceKeys - the value for the processInstanceKeys record component
      processDefinitionKeys - the value for the processDefinitionKeys record component
      candidateUsers - the value for the candidateUsers record component
      candidateGroups - the value for the candidateGroups record component
      tenantIds - the value for the tenantIds record component
      variableFilters - the value for the variableFilters record component
      type - the value for the type 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.
    • keys

      public List<Long> keys()
      Returns the value of the keys record component.
      Returns:
      the value of the keys record component
    • elementIds

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

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

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

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

      public List<Long> processInstanceKeys()
      Returns the value of the processInstanceKeys record component.
      Returns:
      the value of the processInstanceKeys record component
    • processDefinitionKeys

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

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

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

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

      public List<VariableValueFilter> variableFilters()
      Returns the value of the variableFilters record component.
      Returns:
      the value of the variableFilters record component
    • type

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