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.forceClaimTask(String taskId,
String userName) |
This endpoint force claims a Task if possible even if it is already claimed by someone else.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.forceCompleteTask(String taskId) |
This endpoint force completes a Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.forceDeleteTask(String taskId) |
This endpoint force deletes a Task even if it's not completed.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.forceRequestChanges(String taskId) |
This endpoint force requests changes on a Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.forceRequestReview(String taskId) |
This endpoint force request a review on the specified Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.getTask(String taskId) |
This endpoint retrieves a specific Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.requestChanges(String taskId) |
This endpoint request changes on the specified Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.requestReview(String taskId) |
This endpoint request a review on the specified Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.selectAndClaimTask(TaskQueryFilterParameter filterParameter,
TaskQueryFilterCustomFields filterCustomFields,
TaskQueryFilterCustomIntFields filterCustomIntFields,
TaskController.TaskQuerySortParameter sortParameter) |
This endpoint selects the first Task returned by the Task Query and claims it.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.setTaskRead(String taskId,
IsReadRepresentationModel isRead) |
This endpoint sets the 'isRead' property of a Task.
|
org.springframework.http.ResponseEntity<TaskRepresentationModel> |
TaskController.terminateTask(String taskId) |
This endpoint terminates a Task.
|
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.
|