Interface CmmnTaskService


  • public interface CmmnTaskService
    Author:
    Joram Barrez
    • Method Detail

      • newTask

        org.flowable.task.api.Task newTask()
      • newTask

        org.flowable.task.api.Task newTask​(String taskId)
      • createTaskBuilder

        org.flowable.task.api.TaskBuilder createTaskBuilder()
        Create a builder for the task
        Returns:
        task builder
      • saveTask

        void saveTask​(org.flowable.task.api.Task task)
      • bulkSaveTasks

        void bulkSaveTasks​(Collection<org.flowable.task.api.Task> taskList)
      • complete

        void complete​(String taskId)
      • completeTaskWithForm

        void completeTaskWithForm​(String taskId,
                                  String formDefinitionId,
                                  String outcome,
                                  Map<String,​Object> variables,
                                  boolean localScope)
      • claim

        void claim​(String taskId,
                   String userId)
        Claim responsibility for a task: the given user is made assignee for the task. The difference with setAssignee(String, String) is that here a check is done if the task already has a user assigned to it. No check is done whether the user is known by the identity component.
        Parameters:
        taskId - task to claim, cannot be null.
        userId - user that claims the task. When userId is null the task is unclaimed, assigned to no one.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task doesn't exist.
        org.flowable.common.engine.api.FlowableTaskAlreadyClaimedException - when the task is already claimed by another user.
      • unclaim

        void unclaim​(String taskId)
        A shortcut to claim(java.lang.String, java.lang.String) with null user in order to unclaim the task
        Parameters:
        taskId - task to unclaim, cannot be null.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task doesn't exist.
      • delegateTask

        void delegateTask​(String taskId,
                          String userId)
        Delegates the task to another user. This means that the assignee is set and the delegation state is set to DelegationState.PENDING. If no owner is set on the task, the owner is set to the current assignee of the task.
        Parameters:
        taskId - The id of the task that will be delegated.
        userId - The id of the user that will be set as assignee.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when no task exists with the given id.
      • resolveTask

        void resolveTask​(String taskId)
        Marks that the assignee is done with this task and that it can be send back to the owner. Can only be called when this task is DelegationState.PENDING delegation. After this method returns, the delegationState is set to DelegationState.RESOLVED.
        Parameters:
        taskId - the id of the task to resolve, cannot be null.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when no task exists with the given id.
      • resolveTask

        void resolveTask​(String taskId,
                         Map<String,​Object> variables)
        Marks that the assignee is done with this task providing the required variables and that it can be sent back to the owner. Can only be called when this task is DelegationState.PENDING delegation. After this method returns, the delegationState is set to DelegationState.RESOLVED.
        Parameters:
        taskId -
        variables - When no task exists with the given id.
      • deleteTask

        void deleteTask​(String taskId)
        Deletes the given task, not deleting historic information that is related to this task.
        Parameters:
        taskId - The id of the task that will be deleted, cannot be null. If no task exists with the given taskId, the operation is ignored.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task with given id does not exist.
        org.flowable.common.engine.api.FlowableException - when an error occurs while deleting the task or in case the task is part of a running process.
      • deleteTasks

        void deleteTasks​(Collection<String> taskIds)
        Deletes all tasks of the given collection, not deleting historic information that is related to these tasks.
        Parameters:
        taskIds - The id's of the tasks that will be deleted, cannot be null. All id's in the list that don't have an existing task will be ignored.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when one of the task does not exist.
        org.flowable.common.engine.api.FlowableException - when an error occurs while deleting the tasks or in case one of the tasks is part of a running process.
      • deleteTask

        void deleteTask​(String taskId,
                        boolean cascade)
        Deletes the given task.
        Parameters:
        taskId - The id of the task that will be deleted, cannot be null. If no task exists with the given taskId, the operation is ignored.
        cascade - If cascade is true, also the historic information related to this task is deleted.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task with given id does not exist.
        org.flowable.common.engine.api.FlowableException - when an error occurs while deleting the task or in case the task is part of a running process.
      • deleteTasks

        void deleteTasks​(Collection<String> taskIds,
                         boolean cascade)
        Deletes all tasks of the given collection.
        Parameters:
        taskIds - The id's of the tasks that will be deleted, cannot be null. All id's in the list that don't have an existing task will be ignored.
        cascade - If cascade is true, also the historic information related to this task is deleted.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when one of the tasks does not exist.
        org.flowable.common.engine.api.FlowableException - when an error occurs while deleting the tasks or in case one of the tasks is part of a running process.
      • deleteTask

        void deleteTask​(String taskId,
                        String deleteReason)
        Deletes the given task, not deleting historic information that is related to this task..
        Parameters:
        taskId - The id of the task that will be deleted, cannot be null. If no task exists with the given taskId, the operation is ignored.
        deleteReason - reason the task is deleted. Is recorded in history, if enabled.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task with given id does not exist.
        org.flowable.common.engine.api.FlowableException - when an error occurs while deleting the task or in case the task is part of a running process
      • deleteTasks

        void deleteTasks​(Collection<String> taskIds,
                         String deleteReason)
        Deletes all tasks of the given collection, not deleting historic information that is related to these tasks.
        Parameters:
        taskIds - The id's of the tasks that will be deleted, cannot be null. All id's in the list that don't have an existing task will be ignored.
        deleteReason - reason the task is deleted. Is recorded in history, if enabled.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when one of the tasks does not exist.
        org.flowable.common.engine.api.FlowableException - when an error occurs while deleting the tasks or in case one of the tasks is part of a running process.
      • getSubTasks

        List<org.flowable.task.api.Task> getSubTasks​(String parentTaskId)
        The list of subtasks for this parent task
      • setVariable

        void setVariable​(String taskId,
                         String variableName,
                         Object value)
        set variable on a task. If the variable is not already existing, it will be created in the most outer scope. This means the process instance in case this task is related to an execution.
      • setVariables

        void setVariables​(String taskId,
                          Map<String,​? extends Object> variables)
        set variables on a task. If the variable is not already existing, it will be created in the most outer scope. This means the process instance in case this task is related to an execution.
      • setVariableLocal

        void setVariableLocal​(String taskId,
                              String variableName,
                              Object value)
        set variable on a task. If the variable is not already existing, it will be created in the task.
      • setVariablesLocal

        void setVariablesLocal​(String taskId,
                               Map<String,​? extends Object> variables)
        set variables on a task. If the variable is not already existing, it will be created in the task.
      • getVariable

        Object getVariable​(String taskId,
                           String variableName)
        get a variables and search in the task scope and if available also the execution scopes.
      • getVariable

        <T> T getVariable​(String taskId,
                          String variableName,
                          Class<T> variableClass)
        get a variables and search in the task scope and if available also the execution scopes.
      • getVariableInstance

        org.flowable.variable.api.persistence.entity.VariableInstance getVariableInstance​(String taskId,
                                                                                          String variableName)
        The variable. Searching for the variable is done in all scopes that are visible to the given task (including parent scopes). Returns null when no variable value is found with the given name.
        Parameters:
        taskId - id of task, cannot be null.
        variableName - name of variable, cannot be null.
        Returns:
        the variable or null if the variable is undefined.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when no execution is found for the given taskId.
      • hasVariable

        boolean hasVariable​(String taskId,
                            String variableName)
        checks whether or not the task has a variable defined with the given name, in the task scope and if available also the execution scopes.
      • getVariableLocal

        Object getVariableLocal​(String taskId,
                                String variableName)
        checks whether or not the task has a variable defined with the given name.
      • getVariableLocal

        <T> T getVariableLocal​(String taskId,
                               String variableName,
                               Class<T> variableClass)
        checks whether or not the task has a variable defined with the given name.
      • getVariableInstanceLocal

        org.flowable.variable.api.persistence.entity.VariableInstance getVariableInstanceLocal​(String taskId,
                                                                                               String variableName)
        The variable for a task. Returns the variable when it is set for the task (and not searching parent scopes). Returns null when no variable is found with the given name.
        Parameters:
        taskId - id of task, cannot be null.
        variableName - name of variable, cannot be null.
        Returns:
        the variable or null if the variable is undefined.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when no task is found for the given taskId.
      • hasVariableLocal

        boolean hasVariableLocal​(String taskId,
                                 String variableName)
        checks whether or not the task has a variable defined with the given name, local task scope only.
      • getVariables

        Map<String,​Object> getVariables​(String taskId)
        get all variables and search in the task scope and if available also the execution scopes. If you have many variables and you only need a few, consider using getVariables(String, Collection) for better performance.
      • getVariableInstances

        Map<String,​org.flowable.variable.api.persistence.entity.VariableInstance> getVariableInstances​(String taskId)
        All variables visible from the given task scope (including parent scopes).
        Parameters:
        taskId - id of task, cannot be null.
        Returns:
        the variable instances or an empty map if no such variables are found.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when no task is found for the given taskId.
      • getVariableInstances

        Map<String,​org.flowable.variable.api.persistence.entity.VariableInstance> getVariableInstances​(String taskId,
                                                                                                             Collection<String> variableNames)
        The variable values for all given variableNames, takes all variables into account which are visible from the given task scope (including parent scopes).
        Parameters:
        taskId - id of taskId, cannot be null.
        variableNames - the collection of variable names that should be retrieved.
        Returns:
        the variables or an empty map if no such variables are found.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when no taskId is found for the given taskId.
      • getVariableInstancesLocalByTaskIds

        List<org.flowable.variable.api.persistence.entity.VariableInstance> getVariableInstancesLocalByTaskIds​(Set<String> taskIds)
        get all variables and search only in the task scope.
      • getVariableInstancesLocal

        Map<String,​org.flowable.variable.api.persistence.entity.VariableInstance> getVariableInstancesLocal​(String taskId)
        All variable values that are defined in the task scope, without taking outer scopes into account. If you have many task local variables and you only need a few, consider using getVariableInstancesLocal(String, Collection) for better performance.
        Parameters:
        taskId - id of task, cannot be null.
        Returns:
        the variables or an empty map if no such variables are found.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when no task is found for the given taskId.
      • getVariableInstancesLocal

        Map<String,​org.flowable.variable.api.persistence.entity.VariableInstance> getVariableInstancesLocal​(String taskId,
                                                                                                                  Collection<String> variableNames)
        The variable values for all given variableNames that are defined in the given task's scope. (Does not searching parent scopes).
        Parameters:
        taskId - id of taskId, cannot be null.
        variableNames - the collection of variable names that should be retrieved.
        Returns:
        the variables or an empty map if no such variables are found.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when no taskId is found for the given taskId.
      • removeVariable

        void removeVariable​(String taskId,
                            String variableName)
        Removes the variable from the task. When the variable does not exist, nothing happens.
      • removeVariableLocal

        void removeVariableLocal​(String taskId,
                                 String variableName)
        Removes the variable from the task (not considering parent scopes). When the variable does not exist, nothing happens.
      • removeVariables

        void removeVariables​(String taskId,
                             Collection<String> variableNames)
        Removes all variables in the given collection from the task. Non existing variable names are simply ignored.
      • removeVariablesLocal

        void removeVariablesLocal​(String taskId,
                                  Collection<String> variableNames)
        Removes all variables in the given collection from the task (not considering parent scopes). Non existing variable names are simply ignored.
      • getTaskFormModel

        org.flowable.form.api.FormInfo getTaskFormModel​(String taskId)
      • getTaskFormModel

        org.flowable.form.api.FormInfo getTaskFormModel​(String taskId,
                                                        boolean ignoreVariables)
      • setPriority

        void setPriority​(String taskId,
                         int priority)
        Changes the priority of the task. Authorization: actual owner / business admin
        Parameters:
        taskId - id of the task, cannot be null.
        priority - the new priority for the task.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task doesn't exist.
      • setDueDate

        void setDueDate​(String taskId,
                        Date dueDate)
        Changes the due date of the task
        Parameters:
        taskId - id of the task, cannot be null.
        dueDate - the new due date for the task
        Throws:
        org.flowable.common.engine.api.FlowableException - when the task doesn't exist.
      • createTaskQuery

        org.flowable.task.api.TaskQuery createTaskQuery()
      • setAssignee

        void setAssignee​(String taskId,
                         String userId)
        Changes the assignee of the given task to the given userId. No check is done whether the user is known by the identity component.
        Parameters:
        taskId - id of the task, cannot be null.
        userId - id of the user to use as assignee.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task or user doesn't exist.
      • setOwner

        void setOwner​(String taskId,
                      String userId)
        Transfers ownership of this task to another user. No check is done whether the user is known by the identity component.
        Parameters:
        taskId - id of the task, cannot be null.
        userId - of the person that is receiving ownership.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task or user doesn't exist.
      • getIdentityLinksForTask

        List<org.flowable.identitylink.api.IdentityLink> getIdentityLinksForTask​(String taskId)
        Retrieves the IdentityLinks associated with the given task. Such an IdentityLink informs how a certain identity (eg. group or user) is associated with a certain task (eg. as candidate, assignee, etc.)
      • addUserIdentityLink

        void addUserIdentityLink​(String taskId,
                                 String userId,
                                 String identityLinkType)
        Involves a user with a task. The type of identity link is defined by the given identityLinkType.
        Parameters:
        taskId - id of the task, cannot be null.
        userId - id of the user involve, cannot be null.
        identityLinkType - type of identityLink, cannot be null.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task or user doesn't exist.
      • addGroupIdentityLink

        void addGroupIdentityLink​(String taskId,
                                  String groupId,
                                  String identityLinkType)
        Involves a group with a task. The type of identityLink is defined by the given identityLink.
        Parameters:
        taskId - id of the task, cannot be null.
        groupId - id of the group to involve, cannot be null.
        identityLinkType - type of identity, cannot be null.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task or group doesn't exist.
      • deleteUserIdentityLink

        void deleteUserIdentityLink​(String taskId,
                                    String userId,
                                    String identityLinkType)
        Removes the association between a user and a task for the given identityLinkType.
        Parameters:
        taskId - id of the task, cannot be null.
        userId - id of the user involve, cannot be null.
        identityLinkType - type of identityLink, cannot be null.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task or user doesn't exist.
      • deleteGroupIdentityLink

        void deleteGroupIdentityLink​(String taskId,
                                     String groupId,
                                     String identityLinkType)
        Removes the association between a group and a task for the given identityLinkType.
        Parameters:
        taskId - id of the task, cannot be null.
        groupId - id of the group to involve, cannot be null.
        identityLinkType - type of identity, cannot be null.
        Throws:
        org.flowable.common.engine.api.FlowableObjectNotFoundException - when the task or group doesn't exist.