@ExperimentalApi @ParametersAreNonnullByDefault public interface OperationService
Modifier and Type | Method and Description |
---|---|
Map<Target,ValidationResult> |
canPerform(Person person,
Operation operation,
Iterable<Target> targets)
Check whether the specified Person can perform a particular operation on each of the specified targets.
|
ValidationResult |
canPerform(Person person,
Operation operation,
Target target)
Check whether a person can perform a particular operation on a particular target.
|
List<OperationDescription> |
getAllOperationsForType(TargetType targetType)
For a given target type, list all operations this service can provide information about.
|
List<OperationCheckResult> |
getAvailableOperations(Person person,
Target target)
List all operations that a person can perform on a particular target.
|
List<OperationCheckResult> |
getAvailableOperations(Target target)
List all operations that the current user can perform on a particular target.
|
@Nonnull List<OperationDescription> getAllOperationsForType(TargetType targetType)
BadRequestException
- if targetType is nullPermissionException
- if targetType is
unknown (e.g. for custom types for which no
OperationDelegate
s are registered)@Nonnull List<OperationCheckResult> getAvailableOperations(Person person, Target target)
person
- the Person on which to perform a permission and validation checktarget
- the Target to check permission forcanPerform(Person, Operation, Target)
would return a valid and authorized
result.BadRequestException
- if person or target is nullNotFoundException
- if target doesn't exist
or person lacks view permissionPermissionException
- if targetType is
unknown (e.g. for custom types for which no
OperationDelegate
s are registered)@Nonnull List<OperationCheckResult> getAvailableOperations(Target target)
target
- the Target to check permission forcanPerform(Person, Operation, Target)
would return a valid and authorized
result.BadRequestException
- if target is nullNotFoundException
- if target doesn't exist
or current user lacks view permissionPermissionException
- if targetType is
unknown (e.g. for custom types for which no
OperationDelegate
s are registered)@Nonnull ValidationResult canPerform(Person person, Operation operation, Target target)
person
- the Person on which to perform a permission and validation checkoperation
- the operation to check permission fortarget
- the Target to check permission forBadRequestException
- if person, operation or target is
null, or if target points to the wrong kind of object for this operation check.@Nonnull Map<Target,ValidationResult> canPerform(Person person, Operation operation, Iterable<Target> targets)
canPerform(Person, Operation, Target)
.)person
- the Person on which to perform a permission and validation checkoperation
- the operation to check permission fortargets
- the Targets to individually check permission for; at least one target is required;
must all be of the same TargetType
ValidationResult
for each of the supplied targets. Results for each target will
be as follows:
BadRequestException
- if any of the parameters are null,
or if targets is empty, contains null targets or mixed TargetType
s,
or if any target points to the wrong kind of object for this operation check.Copyright © 2003–2015 Atlassian. All rights reserved.
View cookie preferences