Package io.camunda.service
Record Class ElementInstanceServices.SetVariablesRequest
java.lang.Object
java.lang.Record
io.camunda.service.ElementInstanceServices.SetVariablesRequest
- Enclosing class:
ElementInstanceServices
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongReturns the value of theelementInstanceKeyrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.local()Returns the value of thelocalrecord component.Returns the value of theoperationReferencerecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thevariablesrecord component.
-
Constructor Details
-
SetVariablesRequest
public SetVariablesRequest(long elementInstanceKey, Map<String, Object> variables, Boolean local, Long operationReference) Creates an instance of aSetVariablesRequestrecord class.- Parameters:
elementInstanceKey- the value for theelementInstanceKeyrecord componentvariables- the value for thevariablesrecord componentlocal- the value for thelocalrecord componentoperationReference- the value for theoperationReferencerecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
elementInstanceKey
public long elementInstanceKey()Returns the value of theelementInstanceKeyrecord component.- Returns:
- the value of the
elementInstanceKeyrecord component
-
variables
Returns the value of thevariablesrecord component.- Returns:
- the value of the
variablesrecord component
-
local
Returns the value of thelocalrecord component.- Returns:
- the value of the
localrecord component
-
operationReference
Returns the value of theoperationReferencerecord component.- Returns:
- the value of the
operationReferencerecord component
-