Interface UserOperationService
-
- All Known Implementing Classes:
DefaultUserOperationService
public interface UserOperationService
Service API forUserOperation
.- Author:
- Nick Crum (ncrum)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description List<UserOperation>
findAllByScopeIn(Collection<String> scopes)
Deprecated.usegetUserOperationInformation(Collection)
insteadUserOperationInformation
getUserOperationInformation(Collection<String> scopes)
Finds theUserOperationInformation
for the current user and the given scopes.
-
-
-
Method Detail
-
findAllByScopeIn
@Deprecated List<UserOperation> findAllByScopeIn(@NonNull Collection<String> scopes)
Deprecated.usegetUserOperationInformation(Collection)
insteadFinds all user operations tied to the provided set of scopes.- Parameters:
scopes
- the set of scopes to retrieve operations for- Returns:
- all `UserOperation` matching at least one of the scopes
-
getUserOperationInformation
UserOperationInformation getUserOperationInformation(@NonNull Collection<String> scopes)
Finds theUserOperationInformation
for the current user and the given scopes.- Parameters:
scopes
- the set of scopes to retrieve operation info for- Returns:
- the operation information on the current user for the given scopes
-
-