Package io.camunda.client.api.command
Interface CompleteUserTaskCommandStep1
- All Superinterfaces:
CommandWithVariables<CompleteUserTaskCommandStep1>,FinalCommandStep<CompleteUserTaskResponse>
- All Known Implementing Classes:
CompleteUserTaskCommandImpl
public interface CompleteUserTaskCommandStep1
extends FinalCommandStep<CompleteUserTaskResponse>, CommandWithVariables<CompleteUserTaskCommandStep1>
-
Method Summary
Modifier and TypeMethodDescriptionSet the custom action to complete the user task with.Set a single variable to complete the user task with.variables(InputStream variables) Set the variables to complete the user task with.Set the variables to complete the user task with.Set the variables to complete the user task with.Set the variables to complete the user task with.Methods inherited from interface io.camunda.client.api.command.FinalCommandStep
execute, requestTimeout, send
-
Method Details
-
action
Set the custom action to complete the user task with.- Parameters:
action- the action value- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
variables
Set the variables to complete the user task with.- Specified by:
variablesin interfaceCommandWithVariables<CompleteUserTaskCommandStep1>- Parameters:
variables- the variables (JSON) as String- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
variables
Set the variables to complete the user task with.- Specified by:
variablesin interfaceCommandWithVariables<CompleteUserTaskCommandStep1>- Parameters:
variables- the variables as object- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
variables
Set the variables to complete the user task with.- Specified by:
variablesin interfaceCommandWithVariables<CompleteUserTaskCommandStep1>- Parameters:
variables- the variables (JSON) as stream- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
variables
Set the variables to complete the user task with.- Specified by:
variablesin interfaceCommandWithVariables<CompleteUserTaskCommandStep1>- Parameters:
variables- the variables as map- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
variable
Set a single variable to complete the user task with.- Specified by:
variablein interfaceCommandWithVariables<CompleteUserTaskCommandStep1>- Parameters:
key- the key of the variable as stringvalue- the value of the variable as object- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-