Task |
TaskService.cancelClaim(String taskId) |
Cancel the claim of an existing task if it was claimed by the current user before.
|
Task |
TaskService.cancelTask(String taskId) |
Cancels a task.
|
Task |
TaskService.claim(String taskId) |
Claim an existing task for the current user.
|
Task |
TaskService.completeTask(String taskId) |
Complete a claimed Task as owner/admin and update State and Timestamps.
|
TaskComment |
TaskService.createTaskComment(TaskComment taskComment) |
Create a task comment.
|
void |
TaskService.deleteTask(String taskId) |
Deletes the task with the given Id.
|
void |
TaskService.deleteTaskComment(String taskCommentId) |
Deletes the task comment with the given Id.
|
Task |
TaskService.forceCancelClaim(String taskId) |
Cancel the claim of an existing task even if it was claimed by another user.
|
Task |
TaskService.forceClaim(String taskId) |
Claim an existing task for the current user even if it is already claimed by someone else.
|
Task |
TaskService.forceCompleteTask(String taskId) |
Complete a Task and update State and Timestamps in every case if the Task exists.
|
void |
TaskService.forceDeleteTask(String taskId) |
Deletes the task with the given Id even if it is not completed.
|
Task |
TaskService.getTask(String taskId) |
Get the details of a task by Id without checking permissions.
|
TaskComment |
TaskService.getTaskComment(String taskCommentId) |
Retrieves a task comment for a given taskCommentId.
|
List<TaskComment> |
TaskService.getTaskComments(String taskId) |
Retrieves a list of task comments for a given taskId.
|
Task |
TaskService.setTaskRead(String taskId,
boolean isRead) |
Marks a task as read.
|
Task |
TaskService.terminateTask(String taskId) |
Terminates a task.
|
Task |
TaskService.transfer(String taskId,
String destinationWorkbasketId) |
Transfer a task to another work basket.
|
Task |
TaskService.transfer(String taskId,
String workbasketKey,
String domain) |
Transfer a task to another work basket.
|
Task |
TaskService.updateTask(Task task) |
Update a task.
|
TaskComment |
TaskService.updateTaskComment(TaskComment taskComment) |
Update a task comment.
|