Class VariableQueryDto

java.lang.Object
com.priint.pubserver.bpm.model.VariableQueryDto

public class VariableQueryDto extends Object
A Object that represents operators for process variable TaskQueryDto.getProcessVariables()
  • Constructor Details

  • Method Details

    • builder

      Returns:
      VariableQueryDtoBuilder
    • getName

      public String getName()
      Returns:
      String - Variable name
    • getOperator

      public ProcessVariableOperator getOperator()
      Returns:
      String - Operator is the comparison operator to be used and value the variable value. Valid operator values are: eq - equal to; neq - not equal to; gt - greater than; gteq - greater than or equal to; lt - lower than; lteq - lower than or equal to; like;notLike.
    • getValue

      public String getValue()
      Returns:
      String - Variable value.
    • setName

      public void setName(String name)
      Parameters:
      name - - Variable name
    • setOperator

      public void setOperator(ProcessVariableOperator operator)
      Parameters:
      operator - Operator is the comparison operator to be used and value the variable value. * Valid operator values are: eq - equal to; neq - not equal to; gt - greater than; gteq - greater than or equal to; lt - lower than; lteq - lower than or equal to; like;notLike.
    • setValue

      public void setValue(String value)
      Parameters:
      value - - - Variable value.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object