Interface UpdateUserTaskCommandStep1
- All Superinterfaces:
FinalCommandStep<UpdateUserTaskResponse>
- All Known Implementing Classes:
UpdateUserTaskCommandImpl
@Deprecated
public interface UpdateUserTaskCommandStep1
extends FinalCommandStep<UpdateUserTaskResponse>
Deprecated.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Set the custom action to update the user task with.candidateGroups(String... candidateGroups) Deprecated.Set the candidate groups to set in the user task.candidateGroups(List<String> candidateGroups) Deprecated.Set the candidate groups to set in the user task.candidateUsers(String... candidateUsers) Deprecated.Set the candidate users to set in the user task.candidateUsers(List<String> candidateUsers) Deprecated.Set the candidate users to set in the user task.Deprecated.Remove the candidate groups from the user task.Deprecated.Remove the candidate users from the user task.Deprecated.Clear the due date in the user task.Deprecated.Clear the follow-up date in the user task.Deprecated.Set the due date to set in the user task.followUpDate(String followUpDate) Deprecated.Set the follow-up date to set in the user task.Deprecated.Set the priority of the User Task.Methods inherited from interface io.camunda.zeebe.client.api.command.FinalCommandStep
requestTimeout, send
-
Method Details
-
action
Deprecated.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
Deprecated.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()Deprecated.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
Deprecated.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()Deprecated.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
Deprecated.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
Deprecated.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()Deprecated.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
Deprecated.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
Deprecated.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()Deprecated.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
Deprecated.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.
-
UpdateUserTaskCommandStep1