Uses of Class
pro.taskana.workbasket.api.exceptions.NotAuthorizedOnWorkbasketException
Packages that use NotAuthorizedOnWorkbasketException
Package
Description
-
Uses of NotAuthorizedOnWorkbasketException in pro.taskana.task.api
Methods in pro.taskana.task.api that throw NotAuthorizedOnWorkbasketExceptionModifier and TypeMethodDescriptionTaskService.cancelClaim(String taskId) Cancel the claim of an existing Task if it was claimed by the current user before.TaskService.cancelClaim(String taskId, boolean keepOwner) Cancel the claim of an existing Task if it was claimed by the current user before.TaskService.cancelTask(String taskId) Claim an existing Task for the current user.TaskService.completeTask(String taskId) TaskService.createTask(Task taskToCreate) Inserts a Task that doesn't exist in the database yet.TaskService.createTaskComment(TaskComment taskComment) Inserts the specified TaskComment into the database.voidTaskService.deleteTask(String taskId) voidTaskService.deleteTaskComment(String taskCommentId) Deletes the TaskComment with the given id.TaskService.forceCancelClaim(String taskId) Cancel the claim of an existing Task even if it was claimed by another user.TaskService.forceCancelClaim(String taskId, boolean keepOwner) Cancel the claim of an existing Task even if it was claimed by another user.TaskService.forceClaim(String taskId) Claim an existing Task for the current user even if it is already claimed by someone else.TaskService.forceCompleteTask(String taskId) voidTaskService.forceDeleteTask(String taskId) TaskService.forceRequestChanges(String taskId) Request changes for an existing Task even if the current user is not the owner or the Task is not in TaskState.IN_REVIEW yet.TaskService.forceRequestReview(String taskId) Request review for an existing Task even if the current user is not the owner or the Task is not in TaskState.CLAIMED yet.TaskService.getTaskComment(String taskCommentId) Retrieves the TaskComment with the given id.TaskService.getTaskComments(String taskId) TaskService.requestChanges(String taskId) Request changes for an existing Task that is in TaskState.IN_REVIEW.TaskService.requestReview(String taskId) Request review for an existing Task that is in TaskState.CLAIMED.TaskService.selectAndClaim(TaskQuery taskQuery) TaskService.setTaskRead(String taskId, boolean isRead) TaskService.terminateTask(String taskId) Terminates a Task.default TaskTransfers a Task to another Workbasket.default TaskTransfers a Task to another Workbasket.default BulkOperationResults<String,TaskanaException> TaskService.transferTasks(String destinationWorkbasketKey, String destinationWorkbasketDomain, List<String> taskIds) TaskService.transferTasks(String destinationWorkbasketKey, String destinationWorkbasketDomain, List<String> taskIds, boolean setTransferFlag) Transfers a List of Tasks to another Workbasket.default BulkOperationResults<String,TaskanaException> TaskService.transferTasks(String destinationWorkbasketId, List<String> taskIds) TaskService.transferTasks(String destinationWorkbasketId, List<String> taskIds, boolean setTransferFlag) Transfers a List of Tasks to another Workbasket.default BulkOperationResults<String,TaskanaException> TaskService.transferTasksWithOwner(String destinationWorkbasketKey, String destinationWorkbasketDomain, List<String> taskIds, String owner) Transfers a List of Tasks to another Workbasket and sets the owner of the Tasks while always setting isTransferred to true.TaskService.transferTasksWithOwner(String destinationWorkbasketKey, String destinationWorkbasketDomain, List<String> taskIds, String owner, boolean setTransferFlag) default BulkOperationResults<String,TaskanaException> TaskService.transferTasksWithOwner(String destinationWorkbasketId, List<String> taskIds, String owner) Transfers a List of Tasks to another Workbasket and sets the owner of the Tasks to owner while always setting isTransferred to true.TaskService.transferTasksWithOwner(String destinationWorkbasketId, List<String> taskIds, String owner, boolean setTransferFlag) default TaskTaskService.transferWithOwner(String taskId, String destinationWorkbasketId, String owner) Transfers a Task to another Workbasket and sets the owner of the Task in the new Workbasket to owner while always setting isTransferred to true.TaskService.transferWithOwner(String taskId, String destinationWorkbasketId, String owner, boolean setTransferFlag) default TaskTaskService.transferWithOwner(String taskId, String workbasketKey, String domain, String owner) Transfers a Task to another Workbasket and sets the owner of the Task in new Workbasket to owner while always setting isTransferred .TaskService.transferWithOwner(String taskId, String workbasketKey, String domain, String owner, boolean setTransferFlag) TaskService.updateTask(Task task) Update a Task.TaskService.updateTaskComment(TaskComment taskComment) Updates the specified TaskComment. -
Uses of NotAuthorizedOnWorkbasketException in pro.taskana.task.internal
Methods in pro.taskana.task.internal that throw NotAuthorizedOnWorkbasketExceptionModifier and TypeMethodDescriptionTaskServiceImpl.cancelClaim(String taskId) TaskServiceImpl.cancelClaim(String taskId, boolean keepOwner) TaskServiceImpl.cancelTask(String taskId) TaskServiceImpl.completeTask(String taskId) TaskServiceImpl.createTask(Task taskToCreate) TaskServiceImpl.createTaskComment(TaskComment taskComment) voidTaskServiceImpl.deleteTask(String taskId) voidTaskServiceImpl.deleteTaskComment(String taskCommentId) TaskServiceImpl.forceCancelClaim(String taskId) TaskServiceImpl.forceCancelClaim(String taskId, boolean keepOwner) TaskServiceImpl.forceClaim(String taskId) TaskServiceImpl.forceCompleteTask(String taskId) voidTaskServiceImpl.forceDeleteTask(String taskId) TaskServiceImpl.forceRequestChanges(String taskId) TaskServiceImpl.forceRequestReview(String taskId) TaskServiceImpl.getTaskComment(String taskCommentid) TaskServiceImpl.getTaskComments(String taskId) TaskServiceImpl.requestChanges(String taskId) TaskServiceImpl.requestReview(String taskId) TaskServiceImpl.selectAndClaim(TaskQuery taskQuery) TaskServiceImpl.setTaskRead(String taskId, boolean isRead) TaskServiceImpl.terminateTask(String taskId) TaskServiceImpl.transfer(String taskId, String workbasketKey, String domain, boolean setTransferFlag) TaskServiceImpl.transferTasks(String destinationWorkbasketKey, String destinationWorkbasketDomain, List<String> taskIds, boolean setTransferFlag) TaskServiceImpl.transferTasks(String destinationWorkbasketId, List<String> taskIds, boolean setTransferFlag) TaskServiceImpl.transferTasksWithOwner(String destinationWorkbasketKey, String destinationWorkbasketDomain, List<String> taskIds, String owner, boolean setTransferFlag) TaskServiceImpl.transferTasksWithOwner(String destinationWorkbasketId, List<String> taskIds, String owner, boolean setTransferFlag) TaskServiceImpl.transferWithOwner(String taskId, String destinationWorkbasketId, String owner, boolean setTransferFlag) TaskServiceImpl.transferWithOwner(String taskId, String workbasketKey, String domain, String owner, boolean setTransferFlag) TaskServiceImpl.updateTask(Task task) TaskServiceImpl.updateTaskComment(TaskComment taskComment) -
Uses of NotAuthorizedOnWorkbasketException in pro.taskana.workbasket.api
Methods in pro.taskana.workbasket.api that throw NotAuthorizedOnWorkbasketExceptionModifier and TypeMethodDescriptionvoidWorkbasketService.addDistributionTarget(String sourceWorkbasketId, String targetWorkbasketId) Add a distribution target to a Workbasket.voidWorkbasketService.checkAuthorization(String workbasketKey, String domain, WorkbasketPermission... permission) This method checks the authorization for the actual User.voidWorkbasketService.checkAuthorization(String workbasketId, WorkbasketPermission... permission) This method checks the authorization for the actual User.booleanWorkbasketService.deleteWorkbasket(String workbasketId) Deletes the Workbasket by the given id.WorkbasketService.getDistributionSources(String workbasketId) Returns the distribution sources for a given Workbasket.WorkbasketService.getDistributionSources(String workbasketKey, String domain) Returns the distribution sources for a given Workbasket.WorkbasketService.getDistributionTargets(String workbasketId) Returns the distribution targets for a given Workbasket.WorkbasketService.getDistributionTargets(String workbasketKey, String domain) Returns the distribution targets for a given Workbasket.WorkbasketService.getWorkbasket(String workbasketId) Get the Workbasket specified by the given id.WorkbasketService.getWorkbasket(String workbasketKey, String domain) voidWorkbasketService.removeDistributionTarget(String sourceWorkbasketId, String targetWorkbasketId) Remove a distribution target from a Workbasket.voidWorkbasketService.setDistributionTargets(String sourceWorkbasketId, List<String> targetWorkbasketIds) Set the distribution targets for a Workbasket.voidWorkbasketService.setWorkbasketAccessItems(String workbasketId, List<WorkbasketAccessItem> wbAccessItems) Setting up the new WorkbasketAccessItems for a Workbasket.WorkbasketService.updateWorkbasket(Workbasket workbasket) Update the given Workbasket. -
Uses of NotAuthorizedOnWorkbasketException in pro.taskana.workbasket.internal
Methods in pro.taskana.workbasket.internal that throw NotAuthorizedOnWorkbasketExceptionModifier and TypeMethodDescriptionvoidWorkbasketServiceImpl.addDistributionTarget(String sourceWorkbasketId, String targetWorkbasketId) voidWorkbasketServiceImpl.checkAuthorization(String workbasketKey, String domain, WorkbasketPermission... requestedPermissions) voidWorkbasketServiceImpl.checkAuthorization(String workbasketId, WorkbasketPermission... requestedPermissions) booleanWorkbasketServiceImpl.deleteWorkbasket(String workbasketId) WorkbasketServiceImpl.getDistributionSources(String workbasketId) WorkbasketServiceImpl.getDistributionSources(String workbasketKey, String domain) WorkbasketServiceImpl.getDistributionTargets(String workbasketId) WorkbasketServiceImpl.getDistributionTargets(String workbasketKey, String domain) WorkbasketServiceImpl.getWorkbasket(String workbasketId) WorkbasketServiceImpl.getWorkbasket(String workbasketKey, String domain) voidWorkbasketServiceImpl.removeDistributionTarget(String sourceWorkbasketId, String targetWorkbasketId) voidWorkbasketServiceImpl.setDistributionTargets(String sourceWorkbasketId, List<String> targetWorkbasketIds) voidWorkbasketServiceImpl.setWorkbasketAccessItems(String workbasketId, List<WorkbasketAccessItem> wbAccessItems) WorkbasketServiceImpl.updateWorkbasket(Workbasket workbasketToUpdate)