Package io.camunda.client.api.command
Interface UpdateUserTaskCommandStep1
- All Superinterfaces:
FinalCommandStep<UpdateUserTaskResponse>
- All Known Implementing Classes:
UpdateUserTaskCommandImpl
-
Method Summary
Modifier and TypeMethodDescriptionSet the custom action to update the user task with.candidateGroups(String... candidateGroups) Set the candidate groups to set in the user task.candidateGroups(List<String> candidateGroups) Set the candidate groups to set in the user task.candidateUsers(String... candidateUsers) Set the candidate users to set in the user task.candidateUsers(List<String> candidateUsers) Set the candidate users to set in the user task.Remove the candidate groups from the user task.Remove the candidate users from the user task.Clear the due date in the user task.Clear the follow-up date in the user task.Set the due date to set in the user task.followUpDate(String followUpDate) Set the follow-up date to set in the user task.Set the priority of the User Task.Methods inherited from interface io.camunda.client.api.command.FinalCommandStep
execute, requestTimeout, send
-
Method Details
-
action
Set the custom action to update 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.
-
dueDate
Set the due date to set in the user task. UseclearDueDate()to remove the due date from the task.- Parameters:
dueDate- the due date to set- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
clearDueDate
UpdateUserTaskCommandStep1 clearDueDate()Clear the due date in the user task.- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
followUpDate
Set the follow-up date to set in the user task. UseclearFollowUpDate()to remove the follow-up date from the task.- Parameters:
followUpDate- the follow-up date to set- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
clearFollowUpDate
UpdateUserTaskCommandStep1 clearFollowUpDate()Clear the follow-up date in the user task.- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
candidateGroups
Set the candidate groups to set in the user task. This replaces the candidate groups in the task. UseclearCandidateGroups()to remove the candidate groups from the task.- Parameters:
candidateGroups- the candidate groups to set- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
candidateGroups
Set the candidate groups to set in the user task. This replaces the candidate groups in the task. UseclearCandidateGroups()to remove the candidate groups from the task.- Parameters:
candidateGroups- the candidate groups to set- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
clearCandidateGroups
UpdateUserTaskCommandStep1 clearCandidateGroups()Remove the candidate groups from the user task.- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
candidateUsers
Set the candidate users to set in the user task. This replaces the candidate users in the task. UseclearCandidateUsers()to remove the candidate users from the task.- Parameters:
candidateUsers- the candidate users to set- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
candidateUsers
Set the candidate users to set in the user task. This replaces the candidate users in the task. UseclearCandidateUsers()to remove the candidate users from the task.- Parameters:
candidateUsers- the candidate users to set- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
clearCandidateUsers
UpdateUserTaskCommandStep1 clearCandidateUsers()Remove the candidate users from the user task.- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
priority
Set the priority of the User Task. The priority must be an integer between 0 and 100, default 50.- Parameters:
priority- the priority to set- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-