08-24-2014 08:44 AM
08-25-2014 01:15 AM
Is it possible to take that task from that person's queue…yes,
/**
* Changes the assignee of the given task to the given userId.
* No check is done whether the user is known by the identity component.
* @param taskId id of the task, cannot be null.
* @param userId id of the user to use as assignee.
* @throws ActivitiObjectNotFoundException when the task or user doesn't exist.
*/
void setAssignee(String taskId, String userId);
If a person has claimed a task no other person can complete the task.No, anybody who can call complete method can complete the task. (It depends on your application who is authorized to call the API.
/**
* Called when the task is successfully executed.
* @param taskId the id of the task to complete, cannot be null.
* @throws ActivitiObjectNotFoundException when no task exists with the given id.
* @throws ActivitiException when this task is {@link DelegationState#PENDING} delegation.
*/
void complete(String taskId);
08-29-2014 03:48 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.