org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.cancelClaimTask(String taskId) |
This endpoint cancels the claim of an existing Task if it was claimed by the current user
before.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.cancelTask(String taskId) |
This endpoint cancels a Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.claimTask(String taskId,
String userName) |
This endpoint claims a Task if possible.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.completeTask(String taskId) |
This endpoint completes a Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.createTask(TaskRepresentationModel taskRepresentationModel) |
This endpoint creates a persistent Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.deleteTask(String taskId) |
This endpoint deletes a Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.forceCancelClaimTask(String taskId) |
This endpoint force cancels the claim of an existing Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.getTask(String taskId) |
This endpoint retrieves a specific Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.selectAndClaimTask(TaskQueryFilterParameter filterParameter,
TaskController.TaskQuerySortParameter sortParameter) |
This endpoint selects the first Task returned by the Task Query and claims it.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.transferTask(String taskId,
String workbasketId,
Boolean setTransferFlag) |
This endpoint transfers a given Task to a given Workbasket, if possible.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.updateTask(String taskId,
TaskRepresentationModel taskRepresentationModel) |
This endpoint updates a requested Task.
|