Interface UpdateUserTaskCommandStep1

All Superinterfaces:
FinalCommandStep<UpdateUserTaskResponse>
All Known Implementing Classes:
UpdateUserTaskCommandImpl

public interface UpdateUserTaskCommandStep1 extends FinalCommandStep<UpdateUserTaskResponse>
  • 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. Use clearDueDate() 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

      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

      UpdateUserTaskCommandStep1 followUpDate(String followUpDate)
      Set the follow-up date to set in the user task. Use clearFollowUpDate() 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

      UpdateUserTaskCommandStep1 candidateGroups(List<String> candidateGroups)
      Set the candidate groups to set in the user task. This replaces the candidate groups in the task. Use clearCandidateGroups() 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

      UpdateUserTaskCommandStep1 candidateGroups(String... candidateGroups)
      Set the candidate groups to set in the user task. This replaces the candidate groups in the task. Use clearCandidateGroups() 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

      UpdateUserTaskCommandStep1 candidateUsers(List<String> candidateUsers)
      Set the candidate users to set in the user task. This replaces the candidate users in the task. Use clearCandidateUsers() 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

      UpdateUserTaskCommandStep1 candidateUsers(String... candidateUsers)
      Set the candidate users to set in the user task. This replaces the candidate users in the task. Use clearCandidateUsers() 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.