@Transactional public class TranslatingApplicationService extends AbstractDelegatingApplicationService
ApplicationService.MembershipsIterable| Constructor and Description |
|---|
TranslatingApplicationService(ApplicationService applicationService,
AliasManager aliasManager) |
| Modifier and Type | Method and Description |
|---|---|
Group |
addGroup(Application application,
GroupTemplate group)
Adds the group to ALL the active permissible directories.
|
User |
addUser(Application application,
UserTemplate user,
PasswordCredential credential)
Adds the user to the first permissible active directory.
|
UserWithAttributes |
addUser(Application application,
UserTemplateWithAttributes user,
PasswordCredential credential)
Adds the user to the first permissible active directory.
|
void |
addUserToGroup(Application application,
String username,
String groupName)
Makes the primary user of the given username a direct member of the group on the directory where the primary user resides.
|
User |
authenticateUser(Application application,
String username,
PasswordCredential passwordCredential)
Will attempt to authenticate the given user against the application.
|
<T> PagedSearcher<T> |
createPagedGroupSearcher(Application application,
EntityQuery<T> query)
Creates paged group searcher for a given group query.
|
<T> PagedSearcher<T> |
createPagedUserSearcher(Application application,
EntityQuery<T> query)
Creates paged user searcher for a given user query.
|
Group |
findGroupByName(Application application,
String name)
Returns the first group with the matching groupname
from all the active directories assigned to the application.
|
GroupWithAttributes |
findGroupWithAttributesByName(Application application,
String name)
Returns the first group with the matching groupname
from all the active directories assigned to the application.
|
User |
findUserByName(Application application,
String name)
Returns the first user with the matching username
from all the active directories assigned to the application.
|
UserWithAttributes |
findUserWithAttributesByName(Application application,
String name)
Returns the first user with the matching username
from all the active directories assigned to the application.
|
UserCapabilities |
getCapabilitiesForNewUsers(Application application)
Gets the expected capabilities for
new users. |
ApplicationService.MembershipsIterable |
getMemberships(Application application)
Returns all memberships for the given application.
|
Events |
getNewEvents(Application application,
String eventToken)
Returns an events object which contains a new eventToken and events that
happened after the given
eventToken was generated. |
boolean |
isUserAuthorised(Application application,
String username)
Returns true if the user is permitted to attempt authentication with the application.
|
boolean |
isUserAuthorised(Application application,
User user)
Returns true if the user is permitted to attempt authentication with the application.
|
boolean |
isUserDirectGroupMember(Application application,
String username,
String groupName)
Returns
true if the user is a direct member of the group in the directory of the first user found with the specified username. |
boolean |
isUserNestedGroupMember(Application application,
String username,
String groupName)
Returns
true if the user is a direct or indirect (nested) member of the group in the directory of the first user found with the specified username. |
void |
removeUser(Application application,
String user)
Removes the user from the first active directory they are found in.
|
void |
removeUserAttributes(Application application,
String username,
String attributeName)
Removes a user's attribute values for the first active directory containing this username.
|
void |
removeUserFromGroup(Application application,
String username,
String groupName)
Makes the primary user of the given username no longer a member of the group on the directory where the primary user resides.
|
User |
renameUser(Application application,
String oldUserName,
String newUsername)
Renames the user in the first active directory the users exists in.
|
<T> List<T> |
searchDirectGroupRelationships(Application application,
MembershipQuery<T> query)
Searches for direct group relationships in any of the application's active assigned directories.
|
<T> List<T> |
searchGroups(Application application,
EntityQuery<T> query)
Returns a List<Group> matching the search criteria defined in the query
for ALL of the active directories assigned to the application.
|
<T> List<T> |
searchNestedGroupRelationships(Application application,
MembershipQuery<T> query)
Searches for direct and indirect (nested) group relationships in any of the application's active assigned directories.
|
<T> List<T> |
searchUsers(Application application,
EntityQuery<T> query)
Returns a List<User> or List<String> matching the search criteria defined in the query
for ALL of the active directories assigned to the application.
|
void |
storeUserAttributes(Application application,
String username,
Map<String,Set<String>> attributes)
Adds or updates a user's attributes with the new Map of attribute values for the first active directory containing this username.
|
Group |
updateGroup(Application application,
GroupTemplate group)
Updates the group in ALL the active permissible directories.
|
User |
updateUser(Application application,
UserTemplate user)
Updates the user in the first active directory the User belongs.
|
void |
updateUserCredential(Application application,
String username,
PasswordCredential credential)
Updates the credentials of the first matching user from all the active directories assigned to the application.
|
User |
userAuthenticated(Application application,
String username) |
addAllUsers, addGroupToGroup, expireAllPasswords, findRemoteUserByName, findUserByKey, findUserWithAttributesByKey, findWebhookById, getApplicationService, getCurrentEventToken, getUserAvatar, getUserAvatarLink, isGroupDirectGroupMember, isGroupNestedGroupMember, registerWebhook, removeGroup, removeGroupAttributes, removeGroupFromGroup, storeGroupAttributes, unregisterWebhookpublic TranslatingApplicationService(ApplicationService applicationService, AliasManager aliasManager)
public User authenticateUser(Application application, String username, PasswordCredential passwordCredential) throws OperationFailedException, InactiveAccountException, InvalidAuthenticationException, ExpiredCredentialException, UserNotFoundException
ApplicationServiceOperationFailedException being thrown,
the authentication logic will skip those directories, instead relying on the operative ones, in the order defined in the application's directory mappings.
However, if the user, still, cannot be authenticated against any remaining directories, we suspect one of the bad directories must have held
the user account, in which case OperationFailedException, which indicates the underlying cause of the first failing directory,
will be thrown from this method.authenticateUser in interface ApplicationServiceauthenticateUser in class AbstractDelegatingApplicationServiceapplication - the application to authenticate againstusername - the username to authenticate againstpasswordCredential - the password to use for authenticationOperationFailedException - underlying directory implementation failed to execute the operation.InactiveAccountException - if the users account is marked as inactiveInvalidAuthenticationException - if authentication with the provided credentials failed, or potentially the user does not exist.ExpiredCredentialException - if the users credentials have expiredUserNotFoundExceptionpublic boolean isUserAuthorised(Application application, String username)
ApplicationServiceFor a user to have access to an application:
isUserAuthorised in interface ApplicationServiceisUserAuthorised in class AbstractDelegatingApplicationServiceapplication - application user is authenticating againstusername - usernamepublic boolean isUserAuthorised(Application application, User user)
ApplicationServiceFor a user to have access to an application:
isUserAuthorised in interface ApplicationServiceisUserAuthorised in class AbstractDelegatingApplicationServiceapplication - application user is authenticating againstuser - the user that will be checkedpublic User findUserByName(Application application, String name) throws UserNotFoundException
ApplicationServiceThe directories are searched in the order they are assigned to the application.
findUserByName in interface ApplicationServicefindUserByName in class AbstractDelegatingApplicationServiceapplication - search application's assigned directories.name - the username of the user to find.UserNotFoundException - user not found in any of the directories.public UserWithAttributes findUserWithAttributesByName(Application application, String name) throws UserNotFoundException
ApplicationServiceThe directories are searched in the order they are assigned to the application.
findUserWithAttributesByName in interface ApplicationServicefindUserWithAttributesByName in class AbstractDelegatingApplicationServiceapplication - search application's assigned directories.name - the username of the user to find.UserNotFoundException - user not found in any of the directories.public User addUser(Application application, UserTemplate user, PasswordCredential credential) throws InvalidUserException, OperationFailedException, InvalidCredentialException, ApplicationPermissionException
ApplicationService
If the user exists in ANY of the application's active assigned
directories, then an InvalidUserException will be thrown.
If the add operation fails on the directory because of permission restrictions, an ApplicationPermissionException is thrown
If ALL directories permissions fail, an
ApplicationPermissionException is thrown.
If the add operation fails on a directory for any other reason, such as directory failure, update failure, etc., an Exception is thrown immediately.
Returns the added user from the directory operation.
addUser in interface ApplicationServiceaddUser in class AbstractDelegatingApplicationServiceapplication - add to application's assigned directories.user - a template of the user to be added. The directoryId of the UserTemplate is ignored, and will be mutated for each directoryMapping.credential - the password credential of the user (unencrypted).ApplicationService.findUserByName(com.atlassian.crowd.model.application.Application, String).InvalidUserException - if the user already exists in ANY associated directory or the user template does not have the required properties populated.OperationFailedException - underlying directory implementation failed to execute the operation.InvalidCredentialException - if the user's credential does not meet the validation requirements for an associated directory.ApplicationPermissionException - if none of the application's associated directories are allowed to perform operations of type OperationType.CREATE_USER.public UserWithAttributes addUser(Application application, UserTemplateWithAttributes user, PasswordCredential credential) throws InvalidUserException, OperationFailedException, InvalidCredentialException, ApplicationPermissionException
ApplicationService
If the user exists in ANY of the application's active assigned
directories, then an InvalidUserException will be thrown.
If the add operation fails on the directory because of permission restrictions, an ApplicationPermissionException is thrown
If ALL directories permissions fail, an
ApplicationPermissionException is thrown.
If the add operation fails on a directory for any other reason, such as directory failure, update failure, etc., an Exception is thrown immediately.
Returns the added user from the directory operation.
addUser in interface ApplicationServiceaddUser in class AbstractDelegatingApplicationServiceapplication - add to application's assigned directories.user - a template of the user to be added. The directoryId of the UserTemplateWithAttributes is ignored, and will be mutated for each directoryMapping.credential - the password credential of the user (unencrypted).ApplicationService.findUserWithAttributesByName(com.atlassian.crowd.model.application.Application, String).InvalidUserException - if the user already exists in ANY associated directory or the user template does not have the required properties populated.OperationFailedException - underlying directory implementation failed to execute the operation.InvalidCredentialException - if the user's credential does not meet the validation requirements for an associated directory.ApplicationPermissionException - if none of the application's associated directories are allowed to perform operations of type OperationType.CREATE_USER.public User updateUser(Application application, UserTemplate user) throws InvalidUserException, OperationFailedException, ApplicationPermissionException, UserNotFoundException
ApplicationService
If the user does not exist in ANY of the application's active assigned
directories, then a UserNotFoundException will be thrown.
If the update operation is not allowed on the User's directory, an
ApplicationPermissionException is thrown.
If the update operation fails on a directory for any other reason, such as directory failure, update failure, etc., an Exception is thrown immediately.
Returns the updated User.
updateUser in interface ApplicationServiceupdateUser in class AbstractDelegatingApplicationServiceapplication - application with assigned directories to operate on.user - a template of the user to be added. The directoryId of the UserTemplate is ignored, and directories searched for the given username.InvalidUserException - if the user template does not have the required properties populated.OperationFailedException - underlying directory implementation failed to execute the operation.ApplicationPermissionException - if the User's directory is not allowed to perform operations of type OperationType.UPDATE_USER.UserNotFoundException - user does not exist in any of the associated active directories of the application.public User renameUser(Application application, String oldUserName, String newUsername) throws UserNotFoundException, OperationFailedException, ApplicationPermissionException, InvalidUserException
ApplicationService
If the user does not exist in ANY of the application's active assigned
directories, then a UserNotFoundException will be thrown.
If the rename operation is not allowed on the User's directory, an
ApplicationPermissionException is thrown.
If the rename operation fails on a directory for any other reason, such as directory failure, update failure, etc., an Exception is thrown immediately.
Returns the renamed User.
renameUser in interface ApplicationServicerenameUser in class AbstractDelegatingApplicationServiceapplication - application with assigned directories to operate on.oldUserName - current username of the user to rename.newUsername - new username of the renamed user.UserNotFoundException - user does not exist in any of the associated active directories of the application.OperationFailedException - underlying directory implementation failed to execute the operation.ApplicationPermissionException - if the User's directory is not allowed to perform operations of type OperationType.UPDATE_USER.InvalidUserException - if the new username does not meet the username requirements for an associated directory.public void updateUserCredential(Application application, String username, PasswordCredential credential) throws OperationFailedException, UserNotFoundException, InvalidCredentialException, ApplicationPermissionException
ApplicationServiceThus, the method only operates on the same user returned from a call to findUserByName.
updateUserCredential in interface ApplicationServiceupdateUserCredential in class AbstractDelegatingApplicationServiceapplication - update in application's assigned directories.username - name of user.credential - new (unencrypted) credentials.OperationFailedException - underlying directory implementation failed to execute the operation.UserNotFoundException - if no user with the given name exists in ANY assigned directory.InvalidCredentialException - if the user's credential does not meet the validation requirements for an associated directory.ApplicationPermissionException - if the first directory in which the user is found doesn't have the permission to perform operations of type OperationType.UPDATE_USER.public void storeUserAttributes(Application application, String username, Map<String,Set<String>> attributes) throws OperationFailedException, ApplicationPermissionException, UserNotFoundException
ApplicationServiceThe attributes map represents new or updated attributes and does not replace existing attributes unless the key of an attribute matches the key of an existing attribute on the user.
This method does not update primary field attributes like firstName, lastName, etc.
If the user does not exist in ANY of the application's assigned
directories, then a UserNotFoundException will be thrown.
If the directory does not have UPDATE_USER permission, an
ApplicationPermissionException is thrown.
If the update operation fails on a directory for any other reason, such as directory failure, update failure, etc., an Exception is thrown immediately.
storeUserAttributes in interface ApplicationServicestoreUserAttributes in class AbstractDelegatingApplicationServiceapplication - application with assigned directories to operate on.username - username of the user to update.attributes - map of one-to-many attribute-values. All attribute keys are treated as new or updated attributes.OperationFailedException - underlying directory implementation failed to execute the operation.ApplicationPermissionException - if the User's directory does not have permission to perform operations of type OperationType.UPDATE_USER_ATTRIBUTE.UserNotFoundException - if the user with the supplied username does not exist in ANY assigned directory.public void removeUserAttributes(Application application, String username, String attributeName) throws OperationFailedException, ApplicationPermissionException, UserNotFoundException
ApplicationService
If the user does not exist in ANY of the application's assigned
directories, then a UserNotFoundException will be thrown.
If the directory does not have UPDATE_USER permission, an
ApplicationPermissionException is thrown.
If the update operation fails on a directory for any other reason, such as directory failure, update failure, etc., an Exception is thrown immediately.
removeUserAttributes in interface ApplicationServiceremoveUserAttributes in class AbstractDelegatingApplicationServiceapplication - application with assigned directories to operate on.username - username of the user to update.attributeName - all attribute values for this key will be removed from the user.OperationFailedException - underlying directory implementation failed to execute the operation.ApplicationPermissionException - if the User's directory does not have permission to perform operations of type OperationType.UPDATE_USER_ATTRIBUTE.UserNotFoundException - if the user with the supplied username does not exist in ANY assigned directory.public void removeUser(Application application, String user) throws OperationFailedException, UserNotFoundException, ApplicationPermissionException
ApplicationService
If the user does not exist in ANY of the application's assigned directories, then a UserNotFoundException
will be thrown.
If the remove operation fails because of permission restrictions, an ApplicationPermissionException is thrown.
removeUser in interface ApplicationServiceremoveUser in class AbstractDelegatingApplicationServiceapplication - remove from application's assigned directories.user - the name of the user to remove.OperationFailedException - underlying directory implementation failed to execute the operation.UserNotFoundException - if user with given name does not exist in ANY assigned directory.ApplicationPermissionException - if the User's directory does not have permission to perform operations of type OperationType.DELETE_USER.public <T> List<T> searchUsers(Application application, EntityQuery<T> query)
ApplicationServiceThe users will be returned in a stable order including across pagination boundaries (excluding modification).
searchUsers in interface ApplicationServicesearchUsers in class AbstractDelegatingApplicationServiceapplication - search application's assigned directories.query - the search query.public Group findGroupByName(Application application, String name) throws GroupNotFoundException
ApplicationServiceThe directories are searched in the order they are assigned to the application.
findGroupByName in interface ApplicationServicefindGroupByName in class AbstractDelegatingApplicationServiceapplication - search application's assigned directories.name - the groupname of the group to find.GroupNotFoundException - group not found in any of the directories.public GroupWithAttributes findGroupWithAttributesByName(Application application, String name) throws GroupNotFoundException
ApplicationServiceThe directories are searched in the order they are assigned to the application.
findGroupWithAttributesByName in interface ApplicationServicefindGroupWithAttributesByName in class AbstractDelegatingApplicationServiceapplication - search application's assigned directories.name - the groupname of the group to find.GroupNotFoundException - group not found in any of the directories.public Group addGroup(Application application, GroupTemplate group) throws InvalidGroupException, OperationFailedException, ApplicationPermissionException
ApplicationService
If the group exists in ANY of the application's active assigned
directories, then an InvalidGroupException will be thrown.
If the add operation fails on a directory because of
permissioning restrictions, an INFO message is logged.
If ALL directories permissions fail, an
ApplicationPermissionException is thrown.
If the add operation fails on a directory for any other reason, such as directory failure, update failure, etc., an Exception is thrown immediately.
Returns the group from the first directory containing the group.
addGroup in interface ApplicationServiceaddGroup in class AbstractDelegatingApplicationServiceapplication - add to application's assigned directories.group - a template of the group to be added. The directoryId of the GroupTemplate is ignored, and will be mutated for each directoryMapping.ApplicationService.findGroupByName(com.atlassian.crowd.model.application.Application, String).InvalidGroupException - if the group already exists in ANY associated directory or the group template does not have the required properties populated.OperationFailedException - underlying directory implementation failed to execute the operation.ApplicationPermissionException - if none of the application's associated directories are allowed to perform operations of type OperationType.CREATE_GROUP.public Group updateGroup(Application application, GroupTemplate group) throws InvalidGroupException, OperationFailedException, ApplicationPermissionException, GroupNotFoundException
ApplicationService
If the group does not exist in ANY of the application's assigned
directories, then a GroupNotFoundException will be thrown.
If the update operation fails on a directory because of
permissioning restrictions, an INFO message is logged.
If ALL directories permissions fail, an
ApplicationPermissionException is thrown.
If the update operation fails on a directory for any other reason, such as directory failure, update failure, etc., an Exception is thrown immediately.
Returns the group from the first directory containing the group.
updateGroup in interface ApplicationServiceupdateGroup in class AbstractDelegatingApplicationServiceapplication - application with assigned directories to operate on.group - a template of the group to be added. The directoryId of the GroupTemplate is ignored, and will be mutated for each directoryMapping.ApplicationService.findGroupByName(com.atlassian.crowd.model.application.Application, String).InvalidGroupException - if the group already exists in ANY associated directory or the group template does not have the required properties populated.OperationFailedException - underlying directory implementation failed to execute the operation.ApplicationPermissionException - if none of the application's associated directories are allowed to perform operations of type OperationType.UPDATE_GROUP.GroupNotFoundException - group does not exist in any of the associated directories of the application.public <T> List<T> searchGroups(Application application, EntityQuery<T> query)
ApplicationServiceThe groups will be returned in a stable order including across pagination boundaries (excluding modification).
searchGroups in interface ApplicationServicesearchGroups in class AbstractDelegatingApplicationServiceapplication - search application's assigned directories.query - the search query.public void addUserToGroup(Application application, String username, String groupName) throws OperationFailedException, UserNotFoundException, GroupNotFoundException, ApplicationPermissionException, MembershipAlreadyExistsException
ApplicationServiceA user exists in one individual directory, however a group is thought to "span" all directories (users from different directories can belong to the same group). With this in mind, if the group does not exist in the User's directory (but does already exist), then this method will attempt to automatically add the group to that directory for you.
addUserToGroup in interface ApplicationServiceaddUserToGroup in class AbstractDelegatingApplicationServiceapplication - modify groups in application's assigned directories.username - username of the user.groupName - name of the group.OperationFailedException - underlying directory implementation failed to execute the operation.UserNotFoundException - when the user cannot be found in ANY directoryGroupNotFoundException - when the group cannot be found in ANY directoryApplicationPermissionException - if the application's directory where the primary user resides does not allow operations of type OperationType.UPDATE_GROUP or the group is readonly.MembershipAlreadyExistsException - if the user is already a member of the grouppublic void removeUserFromGroup(Application application, String username, String groupName) throws OperationFailedException, GroupNotFoundException, UserNotFoundException, ApplicationPermissionException, MembershipNotFoundException
ApplicationServiceremoveUserFromGroup in interface ApplicationServiceremoveUserFromGroup in class AbstractDelegatingApplicationServiceapplication - modify groups in application's assigned directories.username - username of the user.groupName - name of the group.OperationFailedException - underlying directory implementation failed to execute the operation.GroupNotFoundException - when the group does not exist in the directory where the primary user resides.UserNotFoundException - when the user cannot be found in ANY directoryApplicationPermissionException - if the application's directory where the primary user resides does not allow operations of type OperationType.UPDATE_GROUP.MembershipNotFoundException - if the user is not a direct member of the group in an assigned directory.public boolean isUserDirectGroupMember(Application application, String username, String groupName)
ApplicationServicetrue if the user is a direct member of the group in the directory of the first user found with the specified username.isUserDirectGroupMember in interface ApplicationServiceisUserDirectGroupMember in class AbstractDelegatingApplicationServiceapplication - search groups in application's assigned directories.username - name of the user to inspect.groupName - name of the group to inspect.true if and only if the user is a direct member of the group. If the group or user does not exist in any directory, false is returned.public boolean isUserNestedGroupMember(Application application, String username, String groupName)
ApplicationServicetrue if the user is a direct or indirect (nested) member of the group in the directory of the first user found with the specified username.
If the directory does not support nested groups, this call will be equivalent to DirectoryManager.isUserDirectGroupMember(long, String, String).
WARNING: this method could be very slow if the underlying RemoteDirectory does not employ caching.
See CWD-1485 for explanation of logic in amalgamation.
Nesting is not resolved across directories.
isUserNestedGroupMember in interface ApplicationServiceisUserNestedGroupMember in class AbstractDelegatingApplicationServiceapplication - search groups in application's assigned directories.username - name of the user to inspect.groupName - name of the group to inspect.true if and only if the user is a direct or indirect (nested) member of the group. If the group or user does not exist in the directory, false is returned.public <T> List<T> searchDirectGroupRelationships(Application application, MembershipQuery<T> query)
ApplicationServicemembership aggregation semantic
will determine whether only the owning directory (when false) or all directories (when true) will be searched.searchDirectGroupRelationships in interface ApplicationServicesearchDirectGroupRelationships in class AbstractDelegatingApplicationServiceapplication - search groups in application's assigned directories.query - membership query.User entities,
Group entities,
String usernames or String group names matching the query criteria.public <T> List<T> searchNestedGroupRelationships(Application application, MembershipQuery<T> query)
ApplicationService
If the directory does not support nested groups, this call will be equivalent to DirectoryManager.searchDirectGroupRelationships(long, com.atlassian.crowd.search.query.membership.MembershipQuery).
WARNING: this method could be very slow if the underlying RemoteDirectory does not employ caching.
When searching for the groups a user is a member of only the directory of the user (as determined by findUserByName) is searched. When searching for memberships of a group or groups a group is a member of all directories are searched and the results amalgamated.
searchNestedGroupRelationships in interface ApplicationServicesearchNestedGroupRelationships in class AbstractDelegatingApplicationServiceapplication - search groups in application's assigned directories.query - membership query.User entities,
Group entities,
String usernames or String group names matching the query criteria.public Events getNewEvents(Application application, String eventToken) throws EventTokenExpiredException, OperationFailedException
ApplicationServiceeventToken was generated.
If for any reason event store is unable to retrieve events that happened
after the event token was generated, an
EventTokenExpiredException will be thrown. The caller is then
expected to call ApplicationService.getCurrentEventToken(Application) again before asking for
new events.
getNewEvents in interface ApplicationServicegetNewEvents in class AbstractDelegatingApplicationServiceapplication - return events visible to applicationeventToken - event token that was retrieved by a call to ApplicationService.getCurrentEventToken(com.atlassian.crowd.model.application.Application) or this methodeventToken was generatedEventTokenExpiredException - if events that happened after the event token was generated can not be retrievedOperationFailedException - if the operation has failed for any other reason, including invalid argumentspublic UserCapabilities getCapabilitiesForNewUsers(Application application)
ApplicationServicenew users.
Those capabilities reflects a specific moment in time and are subject to change if any user directory is added, removed or re-ordered.
getCapabilitiesForNewUsers in interface ApplicationServicegetCapabilitiesForNewUsers in class AbstractDelegatingApplicationServiceapplication - the application the directories are assigned toApplicationService.addUser(Application, UserTemplate, PasswordCredential)public User userAuthenticated(Application application, String username) throws UserNotFoundException, OperationFailedException, InactiveAccountException
userAuthenticated in interface ApplicationServiceuserAuthenticated in class AbstractDelegatingApplicationServiceUserNotFoundExceptionOperationFailedExceptionInactiveAccountExceptionpublic ApplicationService.MembershipsIterable getMemberships(Application application)
ApplicationServicegetMemberships in interface ApplicationServicegetMemberships in class AbstractDelegatingApplicationServiceapplication - the application for which memberships will be returnedpublic <T> PagedSearcher<T> createPagedGroupSearcher(Application application, EntityQuery<T> query) throws PagingNotSupportedException
ApplicationServicecreatePagedGroupSearcher in interface ApplicationServicecreatePagedGroupSearcher in class AbstractDelegatingApplicationServicePagingNotSupportedExceptionpublic <T> PagedSearcher<T> createPagedUserSearcher(Application application, EntityQuery<T> query) throws PagingNotSupportedException
ApplicationServicecreatePagedUserSearcher in interface ApplicationServicecreatePagedUserSearcher in class AbstractDelegatingApplicationServicePagingNotSupportedExceptionCopyright © 2023 Atlassian. All rights reserved.