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 the Task with the given id.
|
Task |
TaskService.claim(String taskId) |
Claim an existing Task for the current user.
|
Task |
TaskService.completeTask(String taskId) |
|
TaskComment |
TaskService.createTaskComment(TaskComment taskComment) |
|
void |
TaskService.deleteTask(String taskId) |
Deletes the Task with the given id.
|
void |
TaskService.deleteTaskComment(String taskCommentId) |
|
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) |
Completes a Task and updates 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 isn't
completed.
|
Task |
TaskService.getTask(String taskId) |
Fetches a Task from the database by the specified id.
|
TaskComment |
TaskService.getTaskComment(String taskCommentId) |
|
List<TaskComment> |
TaskService.getTaskComments(String taskId) |
|
Task |
TaskService.setTaskRead(String taskId,
boolean isRead) |
|
Task |
TaskService.terminateTask(String taskId) |
|
default Task |
TaskService.transfer(String taskId,
String destinationWorkbasketId) |
|
Task |
TaskService.transfer(String taskId,
String destinationWorkbasketId,
boolean setTransferFlag) |
|
default Task |
TaskService.transfer(String taskId,
String workbasketKey,
String domain) |
|
Task |
TaskService.transfer(String taskId,
String workbasketKey,
String domain,
boolean setTransferFlag) |
|
Task |
TaskService.updateTask(Task task) |
|
TaskComment |
TaskService.updateTaskComment(TaskComment taskComment) |
|