Class JobResultCorrections

java.lang.Object
io.camunda.client.api.command.JobResultCorrections

public class JobResultCorrections extends Object
  • Constructor Details

    • JobResultCorrections

      public JobResultCorrections()
  • Method Details

    • assignee

      public JobResultCorrections assignee(String assignee)
      Correct the assignee of the task.
      Parameters:
      assignee - assignee of the task
      Returns:
      this corrections
    • dueDate

      public JobResultCorrections dueDate(String dueDate)
      Correct the due date of the task.
      Parameters:
      dueDate - due date of the task
      Returns:
      this corrections
    • followUpDate

      public JobResultCorrections followUpDate(String followUpDate)
      Correct the follow up date of the task.
      Parameters:
      followUpDate - follow up date of the task
      Returns:
      this corrections
    • candidateGroups

      public JobResultCorrections candidateGroups(List<String> candidateGroups)
      Correct the candidate groups of the task.
      Parameters:
      candidateGroups - candidate groups of the task
      Returns:
      this corrections
    • candidateUsers

      public JobResultCorrections candidateUsers(List<String> candidateUsers)
      Correct the candidate users of the task.
      Parameters:
      candidateUsers - candidate users of the task
      Returns:
      this corrections
    • priority

      public JobResultCorrections priority(Integer priority)
      Correct the priority of the task.
      Parameters:
      priority - priority of the task
      Returns:
      this corrections
    • getAssignee

      public String getAssignee()
    • getDueDate

      public String getDueDate()
    • getFollowUpDate

      public String getFollowUpDate()
    • getCandidateGroups

      public List<String> getCandidateGroups()
    • getCandidateUsers

      public List<String> getCandidateUsers()
    • getPriority

      public Integer getPriority()