Package io.camunda.zeebe.gateway.rest
Record Class RequestMapper.DecisionEvaluationRequest
java.lang.Object
java.lang.Record
io.camunda.zeebe.gateway.rest.RequestMapper.DecisionEvaluationRequest
- Enclosing class:
RequestMapper
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedecisionIdrecord component.Returns the value of thedecisionKeyrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.tenantId()Returns the value of thetenantIdrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thevariablesrecord component.
-
Constructor Details
-
DecisionEvaluationRequest
public DecisionEvaluationRequest(String decisionId, Long decisionKey, Map<String, Object> variables, String tenantId) Creates an instance of aDecisionEvaluationRequestrecord class.- Parameters:
decisionId- the value for thedecisionIdrecord componentdecisionKey- the value for thedecisionKeyrecord componentvariables- the value for thevariablesrecord componenttenantId- the value for thetenantIdrecord component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object). -
decisionId
Returns the value of thedecisionIdrecord component.- Returns:
- the value of the
decisionIdrecord component
-
decisionKey
Returns the value of thedecisionKeyrecord component.- Returns:
- the value of the
decisionKeyrecord component
-
variables
Returns the value of thevariablesrecord component.- Returns:
- the value of the
variablesrecord component
-
tenantId
Returns the value of thetenantIdrecord component.- Returns:
- the value of the
tenantIdrecord component
-