|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface TaskService
Service which provides access to Task and form related operations.
| Method Summary | |
|---|---|
void |
addCandidateGroup(String taskId,
String groupId)
Convenience shorthand for addGroupIdentityLink(String, String, String); with type IdentityLinkType.CANDIDATE |
void |
addCandidateUser(String taskId,
String userId)
Convenience shorthand for addUserIdentityLink(String, String, String); with type IdentityLinkType.CANDIDATE |
void |
addComment(String taskId,
String processInstanceId,
String message)
Add a comment to a task and/or process instance. |
void |
addGroupIdentityLink(String taskId,
String groupId,
String identityLinkType)
Involves a group with a task. |
void |
addUserIdentityLink(String taskId,
String userId,
String identityLinkType)
Involves a user with a task. |
void |
claim(String taskId,
String userId)
Claim responsibility for a task: the given user is made assignee for the task. |
void |
complete(String taskId)
Called when the task is successfully executed. |
void |
complete(String taskId,
Map<String,Object> variables)
Called when the task is successfully executed, and the required task parameters are given by the end-user. |
Attachment |
createAttachment(String attachmentType,
String taskId,
String processInstanceId,
String attachmentName,
String attachmentDescription,
InputStream content)
Add a new attachment to a task and/or a process instance and use an input stream to provide the content |
Attachment |
createAttachment(String attachmentType,
String taskId,
String processInstanceId,
String attachmentName,
String attachmentDescription,
String url)
Add a new attachment to a task and/or a process instance and use an url as the content |
TaskQuery |
createTaskQuery()
Returns a new TaskQuery that can be used to dynamically query tasks. |
void |
delegateTask(String taskId,
String userId)
Delegates the task to another user. |
void |
deleteAttachment(String attachmentId)
Delete an attachment |
void |
deleteCandidateGroup(String taskId,
String groupId)
Convenience shorthand for deleteGroupIdentityLink(String, String, String); with type IdentityLinkType.CANDIDATE |
void |
deleteCandidateUser(String taskId,
String userId)
Convenience shorthand for deleteUserIdentityLink(String, String, String); with type IdentityLinkType.CANDIDATE |
void |
deleteGroupIdentityLink(String taskId,
String groupId,
String identityLinkType)
Removes the association between a group and a task for the given identityLinkType. |
void |
deleteTask(String taskId)
Deletes the given task. |
void |
deleteTask(String taskId,
boolean cascade)
Deletes the given task. |
void |
deleteTasks(Collection<String> taskIds)
Deletes all tasks of the given collection. |
void |
deleteTasks(Collection<String> taskIds,
boolean cascade)
Deletes all tasks of the given collection. |
void |
deleteUserIdentityLink(String taskId,
String userId,
String identityLinkType)
Removes the association between a user and a task for the given identityLinkType. |
Attachment |
getAttachment(String attachmentId)
Retrieve a particular attachment |
InputStream |
getAttachmentContent(String attachmentId)
Retrieve stream content of a particular attachment |
List<IdentityLink> |
getIdentityLinksForTask(String taskId)
Retrieves the IdentityLinks associated with the given task. |
List<Attachment> |
getProcessInstanceAttachments(String processInstanceId)
The list of attachments associated to a process instance |
List<Comment> |
getProcessInstanceComments(String processInstanceId)
The comments related to the given process instance. |
List<Task> |
getSubTasks(String parentTaskId)
The list of subtasks for this parent task |
List<Attachment> |
getTaskAttachments(String taskId)
The list of attachments associated to a task |
List<Comment> |
getTaskComments(String taskId)
The comments related to the given task. |
List<Event> |
getTaskEvents(String taskId)
The all events related to the given task. |
Object |
getVariable(String taskId,
String variableName)
get a variables and search in the task scope and if available also the execution scopes. |
Object |
getVariableLocal(String taskId,
String variableName)
get a variables and only search in the task scope. |
Map<String,Object> |
getVariables(String taskId)
get all variables and search in the task scope and if available also the execution scopes. |
Map<String,Object> |
getVariables(String taskId,
Collection<String> variableNames)
get values for all given variableNames and search only in the task scope. |
Map<String,Object> |
getVariablesLocal(String taskId)
get all variables and search only in the task scope. |
Map<String,Object> |
getVariablesLocal(String taskId,
Collection<String> variableNames)
get a variable on a task |
Task |
newTask()
Creates a new task that is not related to any process instance. |
Task |
newTask(String taskId)
create a new task with a user defined task id |
void |
resolveTask(String taskId)
Marks that the assignee is done with this task and that it can be send back to the owner. |
void |
saveAttachment(Attachment attachment)
Update the name and decription of an attachment |
void |
saveTask(Task task)
Saves the given task to the persistent data store. |
void |
setAssignee(String taskId,
String userId)
Changes the assignee of the given task to the given userId. |
void |
setOwner(String taskId,
String userId)
Transfers ownership of this task to another user. |
void |
setPriority(String taskId,
int priority)
Changes the priority of the task. |
void |
setVariable(String taskId,
String variableName,
Object value)
set variable on a task. |
void |
setVariableLocal(String taskId,
String variableName,
Object value)
set variable on a task. |
void |
setVariables(String taskId,
Map<String,? extends Object> variables)
set variables on a task. |
void |
setVariablesLocal(String taskId,
Map<String,? extends Object> variables)
set variables on a task. |
| Method Detail |
|---|
Task newTask()
saveTask(Task) 'manually'.
Task newTask(String taskId)
void saveTask(Task task)
task - the task, cannot be null.void deleteTask(String taskId)
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.void deleteTasks(Collection<String> taskIds)
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.
void deleteTask(String taskId,
boolean cascade)
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.
void deleteTasks(Collection<String> taskIds,
boolean cascade)
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.
void claim(String taskId,
String userId)
setAssignee(String, String) is that here
a check is done if the provided user is known by the identity component.
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.
ActivitiException - when the user or task doesn't exist or when the task
is already claimed by another user.void complete(String taskId)
taskId - the id of the task to complete, cannot be null.
ActivitiException - when no task exists with the given id or when this task is DelegationState.PENDING delegation.
void delegateTask(String taskId,
String userId)
DelegationState.PENDING
taskId - The id of the task that will be delegated.userId - The id of the user that will be set as assignee.
ActivitiException - when no task exists with the given id.void resolveTask(String taskId)
DelegationState.PENDING delegation.
After this method returns, the delegationState is set to DelegationState.RESOLVED.
taskId - the id of the task to resolve, cannot be null.
ActivitiException - when no task exists with the given id.
void complete(String taskId,
Map<String,Object> variables)
taskId - the id of the task to complete, cannot be null.variables - task parameters. May be null or empty.
ActivitiException - when no task exists with the given id.
void setAssignee(String taskId,
String userId)
taskId - id of the task, cannot be null.userId - id of the user to use as assignee.
ActivitiException - when the task or user doesn't exist.
void setOwner(String taskId,
String userId)
taskId - id of the task, cannot be null.userId - of the person that is receiving ownership.
ActivitiException - when the task or user doesn't exist.List<IdentityLink> getIdentityLinksForTask(String taskId)
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.)
void addCandidateUser(String taskId,
String userId)
addUserIdentityLink(String, String, String); with type IdentityLinkType.CANDIDATE
taskId - id of the task, cannot be null.userId - id of the user to use as candidate, cannot be null.
ActivitiException - when the task or user doesn't exist.
void addCandidateGroup(String taskId,
String groupId)
addGroupIdentityLink(String, String, String); with type IdentityLinkType.CANDIDATE
taskId - id of the task, cannot be null.groupId - id of the group to use as candidate, cannot be null.
ActivitiException - when the task or group doesn't exist.
void addUserIdentityLink(String taskId,
String userId,
String identityLinkType)
taskId - id of the task, cannot be null.userId - id of the user involve, cannot be null.identityLinkType - type of identityLink, cannot be null (@see IdentityLinkType).
ActivitiException - when the task or user doesn't exist.
void addGroupIdentityLink(String taskId,
String groupId,
String identityLinkType)
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 (@see IdentityLinkType).
ActivitiException - when the task or group doesn't exist.
void deleteCandidateUser(String taskId,
String userId)
deleteUserIdentityLink(String, String, String); with type IdentityLinkType.CANDIDATE
taskId - id of the task, cannot be null.userId - id of the user to use as candidate, cannot be null.
ActivitiException - when the task or user doesn't exist.
void deleteCandidateGroup(String taskId,
String groupId)
deleteGroupIdentityLink(String, String, String); with type IdentityLinkType.CANDIDATE
taskId - id of the task, cannot be null.groupId - id of the group to use as candidate, cannot be null.
ActivitiException - when the task or group doesn't exist.
void deleteUserIdentityLink(String taskId,
String userId,
String identityLinkType)
taskId - id of the task, cannot be null.userId - id of the user involve, cannot be null.identityLinkType - type of identityLink, cannot be null (@see IdentityLinkType).
ActivitiException - when the task or user doesn't exist.
void deleteGroupIdentityLink(String taskId,
String groupId,
String identityLinkType)
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 (@see IdentityLinkType).
ActivitiException - when the task or group doesn't exist.
void setPriority(String taskId,
int priority)
taskId - id of the task, cannot be null.priority - the new priority for the task.
ActivitiException - when the task doesn't exist.TaskQuery createTaskQuery()
TaskQuery that can be used to dynamically query tasks.
void setVariable(String taskId,
String variableName,
Object value)
void setVariables(String taskId,
Map<String,? extends Object> variables)
void setVariableLocal(String taskId,
String variableName,
Object value)
void setVariablesLocal(String taskId,
Map<String,? extends Object> variables)
Object getVariable(String taskId,
String variableName)
Object getVariableLocal(String taskId,
String variableName)
Map<String,Object> getVariables(String taskId)
getVariables(String, Collection)
for better performance.
Map<String,Object> getVariablesLocal(String taskId)
getVariablesLocal(String, Collection)
for better performance.
Map<String,Object> getVariables(String taskId,
Collection<String> variableNames)
Map<String,Object> getVariablesLocal(String taskId,
Collection<String> variableNames)
void addComment(String taskId,
String processInstanceId,
String message)
List<Comment> getTaskComments(String taskId)
List<Event> getTaskEvents(String taskId)
List<Comment> getProcessInstanceComments(String processInstanceId)
Attachment createAttachment(String attachmentType,
String taskId,
String processInstanceId,
String attachmentName,
String attachmentDescription,
InputStream content)
Attachment createAttachment(String attachmentType,
String taskId,
String processInstanceId,
String attachmentName,
String attachmentDescription,
String url)
void saveAttachment(Attachment attachment)
Attachment getAttachment(String attachmentId)
InputStream getAttachmentContent(String attachmentId)
List<Attachment> getTaskAttachments(String taskId)
List<Attachment> getProcessInstanceAttachments(String processInstanceId)
void deleteAttachment(String attachmentId)
List<Task> getSubTasks(String parentTaskId)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||