Task Service
The task service exposes operations to act on tasks. Table 34-4 describes some of the common operations of the task service. Package oracle.bpel.services.workflow.task
corresponds to the task service.
For more information about task service, see Workflow Services Java API Reference for Oracle SOA Suite.
Table 34-4 Task Service Methods
Method | Description |
---|---|
|
Acquire a task. |
|
Acquire a set of tasks. |
|
Add an attachment to a task. Note: This API enables a client to call the API to add an attachment before the creation of a task. If the task is not yet created, then the client can call the API with If a task is already created, then Oracle Workflow Services keeps only the latest version of the attachment in case multiple attachments have the same name. |
|
Add a comment to a task. |
|
Create a to-do task. |
|
Delegate a task to a different user. Both the current assignee and the user to whom the task is delegated can view and act on the task. |
|
Delegate a list of tasks to a different user. Both the current assignee and the user to whom the list of tasks is delegated can view and act on the tasks. |
|
Perform a logical deletion of a task. The task still exists in the database. |
|
Perform a logical deletion of a list of tasks. The tasks still exist in the database. |
|
Cause the task to error. This operation is typically used by the error assignee. |
|
Escalate a task. The default escalation is to the manager of the current user. This can be overridden using escalation functions. |
|
Escalate tasks in bulk. The default escalation is to the manager of the current user. This can be overridden using escalation functions. |
|
Get the previous approvers of a task. |
|
Get the future participants of a task. The future participants are returned in the form of a routing slip that contains simple participants (participant node and parallel nodes that contain routing slips). |
|
Get the users from whom a request for information can be requested. |
|
Initiate a task. |
|
Merge and update a task. Use this operation when a partial task should be updated. A partial task is one in which not all the task attributes are present. In this partial task, only the following task attributes are interpreted:
|
|
Override the routing slip of a task instance with a new routing slip. The current task assignment is nullified and the new routing slip is interpreted as its task is initiated. |
|
Remove a task from the persistent store. |
|
Remove a list of tasks from the persistent store. |
|
Push back a task to the previous approver or original assignees. The original assignees do not need to be the approver, as they may have reassigned the task, escalated the task, and so on. The property PushbackAssignee in the System MBean Browser of Oracle Enterprise Manager Fusion Middleware Control controls whether the task is pushed back to the original assignees or the approvers.
Note: Pushback is designed to work with single approvers and not with group votes. Pushback from a stage with group vote (or parallel) scenario to another stage is not allowed. Similarly, you cannot push back from a single assignee to a group vote (or parallel) scenario. |
|
Reassign a task. |
|
Reassign tasks in bulk. |
|
Reinitiate a task. Reinitiating a task causes a previously completed task to be carried forward so that the history, comments, and attachments are carried forward in a new task. |
|
Release a previously acquired task. |
|
Release a set of previously acquired tasks. |
|
Remove a task attachment. |
|
Renew a task to extend the time it takes to expire. |
|
Request information for a task. |
|
Request information for a task with reapproval. For example, assume |
|
Resume a task. Operations can only be performed by the task owners (or users with the |
|
Resume a set of tasks. |
|
Allow a user to route the task in an ad hoc fashion to the next user(s) who must review the task. The user can specify to route the tasks in serial, parallel, or single assignment. Routing a task is permitted only when the human workflow permits ad hoc routing of the task. |
|
Skip the current assignment and move to the next assignment or pick the outcome as set by the previous approver if there are no more assignees. |
|
Submit information for a task. This action is typically performed after the user has made the necessary updates to the task or has added comments or attachments containing additional information. |
|
Allow task owners (or users with the |
|
Suspend a set of tasks. |
|
Update the outcome of a set of tasks. |
|
Update the priority of the task and its subtasks for the given task ID. If |
|
For bulk update of tasks. A list of tasks for which the priority must be updated can be passed as a parameter to this API. The priorities of the list of tasks is updated. It updates the priority of the task and its subtasks. |
|
Update the task. |
|
Update the task outcome. |
|
Update the task outcome and route the task. Routing a task allows a user to route the task in an ad hoc fashion to the next user(s) who must review the task. The user can specify to route the tasks in serial, parallel, or single assignment. Routing a task is permitted only when the human workflow permits ad hoc routing of the task. |
|
The creator of the task can withdraw any pending task if they are no longer interested in sending it further through the human workflow. A task owner can also withdraw a task on behalf of the creator. When a task is withdrawn, the business process is called back with the state attribute of the task set to |
|
Withdraw a set of tasks. |
For more information, see the following: