Uses of Class
com.atlassian.crowd.exception.UserNotFoundException
Packages that use UserNotFoundException
Package
Description
-
Uses of UserNotFoundException in com.atlassian.crowd.console.action
Methods in com.atlassian.crowd.console.action that throw UserNotFoundExceptionModifier and TypeMethodDescriptionboolean
BaseAction.authorisedToAccessCrowdAdminConsole
(DirectoryMapping directoryMapping, Long directoryId, String username) protected boolean
BaseAction.authorisedToAccessCrowdConsole
(Long directoryId, String name) -
Uses of UserNotFoundException in com.atlassian.crowd.dao.membership
Methods in com.atlassian.crowd.dao.membership that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
MembershipDAOHibernate.addUserToGroup
(long directoryId, String username, String groupName) MembershipDAOHibernate.addUserToGroups
(long directoryId, String username, Set<String> groupNames) void
MembershipDAOHibernate.removeUserFromGroup
(long directoryId, String username, String groupName) -
Uses of UserNotFoundException in com.atlassian.crowd.dao.membership.cache
Methods in com.atlassian.crowd.dao.membership.cache that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
CachingMembershipDao.addUserToGroup
(long directoryId, String userName, String groupName) CachingMembershipDao.addUserToGroups
(long directoryId, String username, Set<String> groupNames) void
CachingMembershipDao.removeUserFromGroup
(long directoryId, String userName, String groupName) -
Uses of UserNotFoundException in com.atlassian.crowd.dao.user
Methods in com.atlassian.crowd.dao.user that throw UserNotFoundExceptionModifier and TypeMethodDescriptionUserDAOHibernate.findByExternalId
(long directoryId, String externalId) InternalUserDao.findByName
(long directoryId, String userName) Finds and return the user with given name and director ID.UserDAOHibernate.findByName
(long directoryId, String username) UserDAOHibernate.findByNameWithAttributes
(long directoryId, String username) UserDAOHibernate.getCredential
(long directoryId, String username) UserDAOHibernate.getCredentialHistory
(long directoryId, String username) void
void
UserDAOHibernate.removeAttribute
(User user, String attributeName) void
UserDAOHibernate.storeAttributes
(User user, Map<String, Set<String>> attributes, boolean updateTimestamp) void
UserDAOHibernate.updateCredential
(User user, PasswordCredential credential, int maxPasswordHistory) -
Uses of UserNotFoundException in com.atlassian.crowd.directory
Methods in com.atlassian.crowd.directory that throw UserNotFoundExceptionModifier and TypeMethodDescriptionDelegatedAuthenticationDirectory.addOrUpdateLdapUser
(String name) Copies or updates a user in the internal directory from their counterpart in the LDAP directory.void
AbstractForwardingDirectory.addUserToGroup
(String username, String groupName) void
AbstractInternalDirectory.addUserToGroup
(String username, String groupName) void
AuditingDirectoryDecorator.addUserToGroup
(String username, String groupName) void
AzureAdDirectory.addUserToGroup
(String username, String groupName) void
DbCachingRemoteDirectory.addUserToGroup
(String username, String groupName) void
MicrosoftActiveDirectory.addUserToGroup
(String username, String groupName) void
MockSimpleRemoteDirectory.addUserToGroup
(String username, String groupName) void
RemoteCrowdDirectory.addUserToGroup
(String username, String groupName) void
RemoteDirectory.addUserToGroup
(String username, String groupName) Adds a user as a member of a group.void
Rfc2307.addUserToGroup
(String username, String groupName) void
RFC4519Directory.addUserToGroup
(String username, String groupName) AbstractInternalDirectory.addUserToGroups
(String username, Set<String> groupNames) InternalRemoteDirectory.addUserToGroups
(String username, Set<String> groupNames) Adds a user to many groups.void
DbCachingRemoteChangeOperations.applySyncingUserAttributes
(String userName, Set<String> deletedAttributes, Map<String, Set<String>> storedAttributes) void
DirectoryCacheChangeOperations.applySyncingUserAttributes
(String userName, Set<String> deletedAttributes, Map<String, Set<String>> storedAttributes) Removes any syncing user attributes listed in deletedAttributes, and store any that are listed in storedAttributes If any non-syncing attributes are included, they will be ignoredvoid
DirectoryCacheImplUsingChangeOperations.applySyncingUserAttributes
(String userName, Set<String> deletedAttributes, Map<String, Set<String>> storedAttributes) AbstractForwardingDirectory.authenticate
(String name, PasswordCredential credential) AbstractInternalDirectory.authenticate
(String name, PasswordCredential credential) AuditingDirectoryDecorator.authenticate
(String name, PasswordCredential credential) AzureAdDirectory.authenticate
(String name, PasswordCredential credential) DbCachingRemoteDirectory.authenticate
(String name, PasswordCredential credential) DelegatedAuthenticationDirectory.authenticate
(String name, PasswordCredential credential) In addition to the normal authentication behaviour, following a successful authentication the following may occur: If the user does not exist in the internal directory andDelegatedAuthenticationDirectory.ATTRIBUTE_CREATE_USER_ON_AUTH
is enabled, the user's details will be added to the internal directory. If the user exists in the internal directory andDelegatedAuthenticationDirectory.ATTRIBUTE_UPDATE_USER_ON_AUTH
is enabled, the user's details will be updated in the internal directory. If the user exists in the internal directory andDelegatedAuthenticationDirectory.ATTRIBUTE_UPDATE_USER_ON_AUTH
is enabled and the username was changed in remote directory, the user's name will be updated in the internal directory. A user marked as inactive locally will not be authenticated, retrieved, renamed or updated from the LDAP server.MockSimpleRemoteDirectory.authenticate
(String name, PasswordCredential credential) RemoteCrowdDirectory.authenticate
(String username, PasswordCredential credential) RemoteDirectory.authenticate
(String name, PasswordCredential credential) Authenticates auser
with the directory store.SpringLDAPConnector.authenticate
(String name, PasswordCredential credential) protected User
DbCachingRemoteDirectory.authenticateAndUpdateInternalUser
(String name, PasswordCredential credential) Authenticates user and ensures that internal directory contains the authenticated user.protected void
DbCachingRemoteDirectory.checkIfUserCanBeUpdatedWithCurrentGroupFiltering
(String username, Set<String> userRemoteGroupNames) <T extends LDAPDirectoryEntity>
TLDAPDirectory.findEntityByDN
(CrowdLdapName dn, Class<T> entityClass) Finds a directory entity (principal, group or role) by their distinguished name.protected <T extends LDAPDirectoryEntity>
TSpringLDAPConnector.findEntityByDN
(CrowdLdapName entityDn, CrowdLdapName baseDn, String filter, ContextMapperWithRequiredAttributes contextMapper, Class<T> entityClass) <T extends LDAPDirectoryEntity>
TSpringLDAPConnector.findEntityByDN
(CrowdLdapName dn, Class<T> entityClass) <T extends LDAPDirectoryEntity>
TSpringLDAPConnector.findEntityByDN
(String dn, Class<T> entityClass) AbstractForwardingDirectory.findUserByExternalId
(String externalId) AbstractInternalDirectory.findUserByExternalId
(String externalId) AuditingDirectoryDecorator.findUserByExternalId
(String externalId) AzureAdDirectory.findUserByExternalId
(String externalId) InternalRemoteDirectory.findUserByExternalId
(String externalId) MockSimpleRemoteDirectory.findUserByExternalId
(String externalId) RemoteCrowdDirectory.findUserByExternalId
(String externalId) RemoteDirectory.findUserByExternalId
(String externalId) Finds the user that matches the suppliedexternalId
.SpringLDAPConnector.findUserByExternalId
(String externalId) AbstractForwardingDirectory.findUserByName
(String name) AbstractInternalDirectory.findUserByName
(String name) AuditingDirectoryDecorator.findUserByName
(String name) AzureAdDirectory.findUserByName
(String name) InternalRemoteDirectory.findUserByName
(String name) MockSimpleRemoteDirectory.findUserByName
(String name) RemoteCrowdDirectory.findUserByName
(String name) RemoteDirectory.findUserByName
(String name) Finds theuser
that matches the suppliedname
.SpringLDAPConnector.findUserByName
(String name) AbstractForwardingDirectory.findUserWithAttributesByName
(String name) AbstractInternalDirectory.findUserWithAttributesByName
(String name) AuditingDirectoryDecorator.findUserWithAttributesByName
(String name) AzureAdDirectory.findUserWithAttributesByName
(String name) DbCachingRemoteChangeOperations.findUserWithAttributesByName
(String name) DirectoryCacheChangeOperations.findUserWithAttributesByName
(String name) DirectoryCacheImplUsingChangeOperations.findUserWithAttributesByName
(String name) MockSimpleRemoteDirectory.findUserWithAttributesByName
(String name) RemoteCrowdDirectory.findUserWithAttributesByName
(String name) RemoteDirectory.findUserWithAttributesByName
(String name) Finds theuser
that matches the suppliedname
.SpringLDAPConnector.findUserWithAttributesByName
(String name) AbstractInternalDirectory.forceRenameUser
(User oldUser, String newName) InternalRemoteDirectory.forceRenameUser
(User oldUser, String newName) Forces a rename on the given user in this directory.AbstractForwardingDirectory.getUserAvatarByName
(String username, int sizeHint) AuditingDirectoryDecorator.getUserAvatarByName
(String username, int sizeHint) default AvatarReference
RemoteDirectory.getUserAvatarByName
(String username, int sizeHint) Return an avatar, if available, for the named user.void
AbstractForwardingDirectory.removeUser
(String name) void
AbstractInternalDirectory.removeUser
(String name) void
AuditingDirectoryDecorator.removeUser
(String name) void
AzureAdDirectory.removeUser
(String name) void
DbCachingRemoteDirectory.removeUser
(String name) void
MockSimpleRemoteDirectory.removeUser
(String name) void
RemoteCrowdDirectory.removeUser
(String username) void
RemoteDirectory.removeUser
(String name) Removes theuser
that matches the suppliedname
.void
Rfc2307.removeUser
(String name) void
SpringLDAPConnector.removeUser
(String name) void
AbstractForwardingDirectory.removeUserAttributes
(String username, String attributeName) void
AbstractInternalDirectory.removeUserAttributes
(String username, String attributeName) void
AuditingDirectoryDecorator.removeUserAttributes
(String username, String attributeName) void
AzureAdDirectory.removeUserAttributes
(String username, String attributeName) void
DbCachingRemoteDirectory.removeUserAttributes
(String username, String attributeName) void
MockSimpleRemoteDirectory.removeUserAttributes
(String username, String attributeName) void
RemoteCrowdDirectory.removeUserAttributes
(String username, String attributeName) void
RemoteDirectory.removeUserAttributes
(String username, String attributeName) Removes all the values for a single attribute key for a user.void
SpringLDAPConnector.removeUserAttributes
(String username, String attributeName) void
AbstractForwardingDirectory.removeUserFromGroup
(String username, String groupName) void
AbstractInternalDirectory.removeUserFromGroup
(String username, String groupName) void
AuditingDirectoryDecorator.removeUserFromGroup
(String username, String groupName) void
AzureAdDirectory.removeUserFromGroup
(String username, String groupName) void
DbCachingRemoteDirectory.removeUserFromGroup
(String username, String groupName) void
MicrosoftActiveDirectory.removeUserFromGroup
(String username, String groupName) void
MockSimpleRemoteDirectory.removeUserFromGroup
(String username, String groupName) void
RemoteCrowdDirectory.removeUserFromGroup
(String username, String groupName) void
RemoteDirectory.removeUserFromGroup
(String username, String groupName) Removes a user as a member of a group.void
Rfc2307.removeUserFromGroup
(String username, String groupName) void
RFC4519Directory.removeUserFromGroup
(String username, String groupName) protected User
AbstractForwardingDirectory.renameUser
(String oldName, String newName) AbstractInternalDirectory.renameUser
(String oldName, String newName) AuditingDirectoryDecorator.renameUser
(String oldName, String newName) AzureAdDirectory.renameUser
(String oldName, String newName) DbCachingRemoteDirectory.renameUser
(String oldName, String newName) MockSimpleRemoteDirectory.renameUser
(String oldName, String newName) RemoteCrowdDirectory.renameUser
(String oldName, String newName) RemoteDirectory.renameUser
(String oldName, String newName) Renames auser
.Rfc2307.renameUser
(String oldName, String newName) SpringLDAPConnector.renameUser
(String oldName, String newName) DbCachingRemoteDirectory.setUserStatusLocally
(String username, boolean userActiveInternally) void
AbstractForwardingDirectory.storeUserAttributes
(String username, Map<String, Set<String>> attributes) void
void
void
void
void
void
void
Adds or updates a user's attributes with the new Map of attribute values in the directory specified by the passed indirectoryId
.void
protected <T extends LDAPDirectoryEntity>
RuntimeExceptionSpringLDAPConnector.typedEntityNotFoundException
(String name, Class<T> entityClass) protected void
DbCachingRemoteDirectory.updateGroupsMembershipOnLogin
(User user, Set<String> userRemoteGroupNames) AbstractForwardingDirectory.updateUser
(UserTemplate user) AuditingDirectoryDecorator.updateUser
(UserTemplate user) AzureAdDirectory.updateUser
(UserTemplate user) CachingDirectory.updateUser
(UserTemplate user) DbCachingRemoteDirectory.updateUser
(UserTemplate user) InternalDirectory.updateUser
(UserTemplate user) MockSimpleRemoteDirectory.updateUser
(UserTemplate user) RemoteCrowdDirectory.updateUser
(UserTemplate user) RemoteDirectory.updateUser
(UserTemplate user) Updates theuser
.Rfc2307.updateUser
(UserTemplate user) SpringLDAPConnector.updateUser
(UserTemplate user) protected User
DbCachingRemoteDirectory.updateUserAndSetActiveFlag
(User remoteUser, User internalUser) void
AbstractForwardingDirectory.updateUserCredential
(String username, PasswordCredential credential) void
AbstractInternalDirectory.updateUserCredential
(String name, PasswordCredential newCredential) void
AppleOpenDirectory.updateUserCredential
(String name, PasswordCredential credential) We don't support changing passwords in Open Directory, mainly because we can't figure out how.void
AuditingDirectoryDecorator.updateUserCredential
(String username, PasswordCredential credential) void
AzureAdDirectory.updateUserCredential
(String username, PasswordCredential credential) void
DbCachingRemoteDirectory.updateUserCredential
(String username, PasswordCredential credential) void
DelegatedAuthenticationDirectory.updateUserCredential
(String username, PasswordCredential credential) void
MockSimpleRemoteDirectory.updateUserCredential
(String username, PasswordCredential credential) void
RemoteCrowdDirectory.updateUserCredential
(String username, PasswordCredential credential) void
RemoteDirectory.updateUserCredential
(String username, PasswordCredential credential) void
SpringLDAPConnector.updateUserCredential
(String name, PasswordCredential credential) AbstractForwardingDirectory.updateUserFromRemoteDirectory
(User remoteUser) AuditingDirectoryDecorator.updateUserFromRemoteDirectory
(User remoteUser) DbCachingRemoteDirectory.updateUserFromRemoteDirectory
(User remoteUser) DelegatedAuthenticationDirectory.updateUserFromRemoteDirectory
(User ldapUser) default User
RemoteDirectory.updateUserFromRemoteDirectory
(User remoteUser) AbstractInternalDirectory.userAuthenticated
(String username) DbCachingRemoteDirectory.userAuthenticated
(String username) DelegatedAuthenticationDirectory.userAuthenticated
(String username) RemoteCrowdDirectory.userAuthenticated
(String username) default User
RemoteDirectory.userAuthenticated
(String username) -
Uses of UserNotFoundException in com.atlassian.crowd.directory.hybrid
Methods in com.atlassian.crowd.directory.hybrid that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
LocalGroupHandler.addUserToLocalGroup
(String username, String groupName) void
LocalGroupHandler.removeUserFromLocalGroup
(String username, String groupName) -
Uses of UserNotFoundException in com.atlassian.crowd.directory.ldap.cache
Methods in com.atlassian.crowd.directory.ldap.cache that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
MockDirectoryCache.applySyncingUserAttributes
(String userName, Set<String> deletedAttributes, Map<String, Set<String>> storedAttributes) MockDirectoryCache.findUserWithAttributesByName
(String name) -
Uses of UserNotFoundException in com.atlassian.crowd.directory.synchronisation.cache
Methods in com.atlassian.crowd.directory.synchronisation.cache that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
DirectoryCache.applySyncingUserAttributes
(String userName, Set<String> deletedAttributes, Map<String, Set<String>> storedAttributes) Removes any syncing user attributes listed in deletedAttributes, and store any that are listed in storedAttributes If any non-syncing attributes are included, they will be ignoredDirectoryCache.findUserWithAttributesByName
(String name) -
Uses of UserNotFoundException in com.atlassian.crowd.emailchange
Methods in com.atlassian.crowd.emailchange that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
EmailChangeManager.changeEmail
(String token, String username) Changes e-mail for a user in crowd app.void
EmailChangeManager.resendEmail
(String username, long directoryId) Resends an e-mail with a new token for a user in crowd app that has a pending e-mail verification. -
Uses of UserNotFoundException in com.atlassian.crowd.embedded.spi
Methods in com.atlassian.crowd.embedded.spi that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
MembershipDao.addUserToGroup
(long directoryId, String userName, String groupName) Adds user as a member of group.MembershipDao.addUserToGroups
(long directoryId, String username, Set<String> groupNames) Bulk adds the given user to all the given groups.UserDao.findByExternalId
(long directoryId, String externalId) Finds and returns the user with the given unique/external id and directory ID.UserDao.findByName
(long directoryId, String userName) Finds and returns the user with the given name and directory ID.UserDao.findByNameWithAttributes
(long directoryId, String userName) Finds and returns the user with attributes with the given name and directory ID.UserDao.getCredential
(long directoryId, String userName) Returns the credential for the given user.UserDao.getCredentialHistory
(long directoryId, String userName) Returns the previous credentials for the given user, starting with the oldest.void
Removes the user.void
UserDao.removeAttribute
(User user, String attributeName) Removes the attributes for the user with the given name.void
MembershipDao.removeUserFromGroup
(long directoryId, String userName, String groupName) Removes user as a member of the given group.Changes the user's name to the provided new name.void
Adds or updates a user's attributes with the new Map of attribute values.Updates all the user properties (except the username) of the user with the same directory and case-insensitive name.void
UserDao.updateCredential
(User user, PasswordCredential credential, int maxCredentialHistory) Updates the credential (password) of the user with the same directory and case-insensitive name. -
Uses of UserNotFoundException in com.atlassian.crowd.exception
Methods in com.atlassian.crowd.exception that return UserNotFoundExceptionModifier and TypeMethodDescriptionstatic UserNotFoundException
UserNotFoundException.forExternalId
(String externalId) Methods in com.atlassian.crowd.exception that throw UserNotFoundExceptionModifier and TypeMethodDescriptionstatic void
UserNotFoundException.throwNotFoundByExternalId
(String externalId) Static factory to throw a UserNotFoundException when searching by externalId rather than username. -
Uses of UserNotFoundException in com.atlassian.crowd.integration.rest.service
Methods in com.atlassian.crowd.integration.rest.service that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
RestCrowdClient.addUserToGroup
(String username, String groupName) RestCrowdClient.authenticateUser
(String username, String password) RestCrowdClient.getGroupsForNestedUser
(String userName, int startIndex, int maxResults) RestCrowdClient.getGroupsForUser
(String userName, int startIndex, int maxResults) RestCrowdClient.getGroupsWithAttributesForUser
(String userName, int startIndex, int maxResults) RestCrowdClient.getNamesOfGroupsForNestedUser
(String userName, int startIndex, int maxResults) RestCrowdClient.getNamesOfGroupsForUser
(String userName, int startIndex, int maxResults) RestCrowdClient.getUserByKey
(String key) RestCrowdClient.getUserWithAttributes
(String name) void
RestCrowdClient.removeUser
(String username) void
RestCrowdClient.removeUserAttributes
(String username, String attributeName) void
RestCrowdClient.removeUserFromGroup
(String username, String groupName) RestCrowdClient.renameUser
(String oldUsername, String newUsername) void
RestCrowdClient.requestPasswordReset
(String username) void
void
RestCrowdClient.updateUser
(User user) void
RestCrowdClient.updateUserCredential
(String username, String password) RestCrowdClient.userAuthenticated
(String username) -
Uses of UserNotFoundException in com.atlassian.crowd.integration.seraph
Methods in com.atlassian.crowd.integration.seraph that throw UserNotFoundExceptionModifier and TypeMethodDescriptionprotected void
CrowdAuthenticator.fetchUserInCache
(String username) Fetches a user with the given username in the cache, in case the user exists, but cannot be found from the cache yet. -
Uses of UserNotFoundException in com.atlassian.crowd.manager.application
Methods in com.atlassian.crowd.manager.application that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
AbstractDelegatingApplicationService.addUserToGroup
(Application application, String username, String groupName) void
ApplicationService.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.void
ApplicationServiceGeneric.addUserToGroup
(Application application, String username, String groupName) void
TranslatingApplicationService.addUserToGroup
(Application application, String username, String groupName) AbstractDelegatingApplicationService.authenticateUser
(Application application, String username, PasswordCredential passwordCredential) AllowingAuthenticateByEmailApplicationService.authenticateUser
(Application application, String usernameOrEmail, PasswordCredential passwordCredential) ApplicationService.authenticateUser
(Application application, String username, PasswordCredential passwordCredential) Will attempt to authenticate the given user against the application.ApplicationServiceGeneric.authenticateUser
(Application application, String username, PasswordCredential passwordCredential) TranslatingApplicationService.authenticateUser
(Application application, String username, PasswordCredential passwordCredential) AbstractDelegatingApplicationService.findRemoteUserByName
(Application application, String username) ApplicationService.findRemoteUserByName
(Application application, String username) Returns the first user with the matching username from all active directories authoratiative remote directory.ApplicationServiceGeneric.findRemoteUserByName
(Application application, String username) AbstractDelegatingApplicationService.findUserByKey
(Application application, String key) ApplicationService.findUserByKey
(Application application, String key) Returns the user with a matching key from all the active directories assigned to the application.ApplicationServiceGeneric.findUserByKey
(Application application, String key) AbstractDelegatingApplicationService.findUserByName
(Application application, String name) ApplicationService.findUserByName
(Application application, String name) Returns the first user with the matching username from all the active directories assigned to the application.ApplicationServiceGeneric.findUserByName
(Application application, String name) TranslatingApplicationService.findUserByName
(Application application, String name) AbstractDelegatingApplicationService.findUserWithAttributesByKey
(Application application, String key) ApplicationService.findUserWithAttributesByKey
(Application application, String key) Returns the user with a matching key from all the active directories assigned to the application.ApplicationServiceGeneric.findUserWithAttributesByKey
(Application application, String key) AbstractDelegatingApplicationService.findUserWithAttributesByName
(Application application, String name) ApplicationService.findUserWithAttributesByName
(Application application, String name) Returns the first user with the matching username from all the active directories assigned to the application.ApplicationServiceGeneric.findUserWithAttributesByName
(Application application, String name) TranslatingApplicationService.findUserWithAttributesByName
(Application application, String name) AbstractDelegatingApplicationService.getUserAvatar
(Application application, String username, int sizeHint) ApplicationService.getUserAvatar
(Application application, String username, int sizeHint) Gets an avatar for this user, if one is available.ApplicationServiceGeneric.getUserAvatar
(Application application, String username, int sizeHint) AbstractDelegatingApplicationService.getUserAvatarLink
(Application application, String username, int sizeHint) ApplicationService.getUserAvatarLink
(Application application, String username, int sizeHint) Gets a URL for an avatar for this user, if one is available.ApplicationServiceGeneric.getUserAvatarLink
(Application application, String username, int sizeHint) void
AbstractDelegatingApplicationService.removeUser
(Application application, String user) void
ApplicationService.removeUser
(Application application, String user) Removes the user from the first active directory they are found in.void
ApplicationServiceGeneric.removeUser
(Application application, String username) void
TranslatingApplicationService.removeUser
(Application application, String user) void
AbstractDelegatingApplicationService.removeUserAttributes
(Application application, String username, String attributeName) void
ApplicationService.removeUserAttributes
(Application application, String username, String attributeName) Removes a user's attribute values for the first active directory containing this username.void
ApplicationServiceGeneric.removeUserAttributes
(Application application, String username, String attributeName) void
TranslatingApplicationService.removeUserAttributes
(Application application, String username, String attributeName) void
AbstractDelegatingApplicationService.removeUserFromGroup
(Application application, String username, String groupName) void
ApplicationService.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.void
ApplicationServiceGeneric.removeUserFromGroup
(Application application, String username, String groupName) void
TranslatingApplicationService.removeUserFromGroup
(Application application, String username, String groupName) AbstractDelegatingApplicationService.renameUser
(Application application, String oldUserName, String newUsername) ApplicationService.renameUser
(Application application, String oldUserName, String newUsername) Renames the user in the first active directory the users exists in.ApplicationServiceGeneric.renameUser
(Application application, String oldUserName, String newUsername) TranslatingApplicationService.renameUser
(Application application, String oldUserName, String newUsername) AbstractDelegatingApplicationService.setUserStatusLocally
(Application application, String username, boolean userActiveInternally) ApplicationService.setUserStatusLocally
(Application application, String username, boolean userActiveInternally) Set the user's active status in the first active directory the User belongsApplicationServiceGeneric.setUserStatusLocally
(Application application, String username, boolean userActiveInternally) void
AbstractDelegatingApplicationService.storeUserAttributes
(Application application, String username, Map<String, Set<String>> attributes) void
ApplicationService.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.void
ApplicationServiceGeneric.storeUserAttributes
(Application application, String username, Map<String, Set<String>> attributes) void
TranslatingApplicationService.storeUserAttributes
(Application application, String username, Map<String, Set<String>> attributes) AbstractDelegatingApplicationService.updateUser
(Application application, UserTemplate user) ApplicationService.updateUser
(Application application, UserTemplate user) Updates the user in the first active directory the User belongs.ApplicationServiceGeneric.updateUser
(Application application, UserTemplate user) TranslatingApplicationService.updateUser
(Application application, UserTemplate user) void
AbstractDelegatingApplicationService.updateUserCredential
(Application application, String username, PasswordCredential credential) void
ApplicationService.updateUserCredential
(Application application, String username, PasswordCredential credential) Updates the credentials of the first matching user from all the active directories assigned to the application.void
ApplicationServiceGeneric.updateUserCredential
(Application application, String username, PasswordCredential credential) void
TranslatingApplicationService.updateUserCredential
(Application application, String username, PasswordCredential credential) AbstractDelegatingApplicationService.userAuthenticated
(Application application, String username) ApplicationService.userAuthenticated
(Application application, String username) ApplicationServiceGeneric.userAuthenticated
(Application application, String username) TranslatingApplicationService.userAuthenticated
(Application application, String username) ApplicationServiceGeneric.validateUpdateUser
(Application application, UserTemplate user) -
Uses of UserNotFoundException in com.atlassian.crowd.manager.application.canonicality
Methods in com.atlassian.crowd.manager.application.canonicality that throw UserNotFoundExceptionModifier and TypeMethodDescriptionCanonicalEntityByNameFinder.fastFailingFindUserByName
(String name) CanonicalEntityByNameFinder.findRemoteUserByName
(String name) CanonicalEntityByNameFinder.findUserByName
(String name) CanonicalEntityByNameFinder.findUserWithAttributesByName
(String name) -
Uses of UserNotFoundException in com.atlassian.crowd.manager.authentication
Methods in com.atlassian.crowd.manager.authentication that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
AliasingAwareTokenAuthenticationManager.invalidateTokensForUser
(String username, String exclusionToken, String applicationName) void
DelegatingTokenAuthenticationManager.invalidateTokensForUser
(String username, String exclusionToken, String applicationName) void
TokenAuthenticationManager.invalidateTokensForUser
(String username, String exclusionToken, String applicationName) Invalidates all sessions for a user, possibly excluding a specific one.void
TokenAuthenticationManagerImpl.invalidateTokensForUser
(String username, String exclusionToken, String applicationName) -
Uses of UserNotFoundException in com.atlassian.crowd.manager.directory
Methods in com.atlassian.crowd.manager.directory that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
DirectoryManager.addUserToGroup
(long directoryId, String username, String groupName) Adds an existing user as a direct member of an existing group in the directory specified by the passed indirectoryId
.void
DirectoryManagerGeneric.addUserToGroup
(long directoryId, String username, String groupName) MembershipService.addUserToGroups
(long directoryId, String username, List<String> groupNames) Adds single supplied user to multiple groupsDirectoryManager.authenticateUser
(long directoryId, String username, PasswordCredential passwordCredential) DirectoryManagerGeneric.authenticateUser
(long directoryId, String username, PasswordCredential passwordCredential) DirectoryManager.findRemoteUserByName
(Long id, String username) Returns the user matching the supplied username in the authoritative remote directory specified by the passed indirectoryId
DirectoryManagerGeneric.findRemoteUserByName
(Long directoryId, String username) DirectoryManager.findUserByExternalId
(long directoryId, String externalId) Returns the user matching the supplied external ID in the directory specified by the passed indirectoryId
.DirectoryManagerGeneric.findUserByExternalId
(long directoryId, String externalId) DirectoryManager.findUserByName
(long directoryId, String username) Returns the user matching the supplied username in the directory specified by the passed indirectoryId
..DirectoryManagerGeneric.findUserByName
(long directoryId, String username) DirectoryManager.findUserWithAttributesByExternalId
(long directoryId, String externalId) Returns the user (with attributes) matching the supplied external ID in the directory specified by the passed indirectoryId
.DirectoryManagerGeneric.findUserWithAttributesByExternalId
(long directoryId, String externalId) DirectoryManager.findUserWithAttributesByName
(long directoryId, String username) Returns the user with all attributes matching the supplied username in the directory specified by the passed indirectoryId
..DirectoryManagerGeneric.findUserWithAttributesByName
(long directoryId, String username) DirectoryManager.getUserAvatarByName
(long directoryId, String username, int sizeHint) Return an avatar, if available, for the named user in the specified directory.DirectoryManagerGeneric.getUserAvatarByName
(long directoryId, String username, int sizeHint) void
DirectoryManager.removeUser
(long directoryId, String username) Removes a user matching the supplied username in the directory specified by the passed indirectoryId
.void
DirectoryManagerGeneric.removeUser
(long directoryId, String username) void
DirectoryManager.removeUserAttributes
(long directoryId, String username, String attributeName) Removes a user's attribute values in the directory specified by the passed indirectoryId
.void
DirectoryManagerGeneric.removeUserAttributes
(long directoryId, String username, String attributeName) void
DirectoryManager.removeUserFromGroup
(long directoryId, String username, String groupName) Removes an existing user from being a direct member of an existing group in the directory specified by the passed indirectoryId
.void
DirectoryManagerGeneric.removeUserFromGroup
(long directoryId, String username, String groupName) MembershipService.removeUserFromGroups
(long directoryId, String username, List<String> groupNames) Removes single supplied user from multiple groupsDirectoryManager.renameUser
(long directoryId, String oldUsername, String newUsername) Renames a user in the directory specified by the passed indirectoryId
.DirectoryManagerGeneric.renameUser
(long directoryId, String oldUsername, String newUsername) DirectoryManager.setUserStateInternally
(long directoryId, String username, boolean userActiveInternally) Set the user's active status in the specified remote directory.DirectoryManagerGeneric.setUserStateInternally
(long directoryId, String username, boolean userActiveInternally) void
DirectoryManager.storeUserAttributes
(long directoryId, String username, Map<String, Set<String>> attributes) Adds or updates a user's attributes with the new Map of attribute values in the directory specified by the passed indirectoryId
.void
DirectoryManagerGeneric.storeUserAttributes
(long directoryId, String username, Map<String, Set<String>> attributes) DirectoryManager.updateUser
(long directoryId, UserTemplate user) Updates a user with the supplied template and returns the updated user retrieved from the directory specified by the passed indirectoryId
.DirectoryManagerGeneric.updateUser
(long directoryId, UserTemplate user) void
DirectoryManager.updateUserCredential
(long directoryId, String username, PasswordCredential credential) This will update the user's credential in the given directory specified by the passed indirectoryId
.void
DirectoryManagerGeneric.updateUserCredential
(long directoryId, String username, PasswordCredential credential) DirectoryManager.updateUserFromRemoteDirectory
(User remoteUser) Updates the user details for the specified user based on the details in the remote directory.DirectoryManagerGeneric.updateUserFromRemoteDirectory
(User remoteUser) DirectoryManager.userAuthenticated
(long directoryId, String username) DirectoryManagerGeneric.userAuthenticated
(long directoryId, String username) -
Uses of UserNotFoundException in com.atlassian.crowd.manager.login
Methods in com.atlassian.crowd.manager.login that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
ForgottenLoginManager.resetUserCredential
(long directoryId, String username, PasswordCredential credential, String token) Resets the user credentials and invalidates the token.void
ForgottenLoginManagerImpl.resetUserCredential
(long directoryId, String username, PasswordCredential credential, String token) void
ForgottenLoginManager.sendResetLink
(long directoryId, String username, int tokenExpirySeconds) Sends a reset link to the user with specified username and directory ID.void
ForgottenLoginManager.sendResetLink
(Application application, String username, int tokenExpirySeconds) Sends a reset link to the first user with the matchingusername
from all the active directories assigned to the application.void
ForgottenLoginManagerImpl.sendResetLink
(long directoryId, String username, int tokenExpirySeconds) void
ForgottenLoginManagerImpl.sendResetLink
(Application application, String username, int tokenExpirySeconds) -
Uses of UserNotFoundException in com.atlassian.crowd.manager.memberships
Methods in com.atlassian.crowd.manager.memberships that throw UserNotFoundExceptionModifier and TypeMethodDescriptionMembershipServiceImpl.addUserToGroups
(long directoryId, String username, List<String> groupNames) MembershipServiceImpl.removeUserFromGroups
(long directoryId, String username, List<String> groupNames) -
Uses of UserNotFoundException in com.atlassian.crowd.manager.permission
Methods in com.atlassian.crowd.manager.permission that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
GroupAdministrationConfigurationService.grantGroupPermissions
(UserGroupAdministrationMapping mapping) Grants administration rights basing on the passed mappingboolean
GroupAdministrationPermissionService.isCurrentUserAdminOfGroup
(Group group) Check if a current logged in user is an administrator of a groupboolean
GroupAdministrationPermissionService.isUserAdminOfGroup
(User user, Group group) Check if a user is an administrator of a groupvoid
GroupAdministrationConfigurationService.revokeGroupPermissions
(UserGroupAdministrationMapping mapping) Removes grant for the specified admin user and the target group -
Uses of UserNotFoundException in com.atlassian.crowd.manager.recovery
Methods in com.atlassian.crowd.manager.recovery that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
RecoveryModeRemoteDirectory.addUserToGroup
(String username, String groupName) RecoveryModeRemoteDirectory.authenticate
(String name, PasswordCredential credential) RecoveryModeRemoteDirectory.findUserByExternalId
(String externalId) RecoveryModeRemoteDirectory.findUserByName
(String name) RecoveryModeRemoteDirectory.findUserWithAttributesByName
(String name) void
RecoveryModeRemoteDirectory.removeUser
(String name) void
RecoveryModeRemoteDirectory.removeUserAttributes
(String username, String attributeName) void
RecoveryModeRemoteDirectory.removeUserFromGroup
(String username, String groupName) RecoveryModeRemoteDirectory.renameUser
(String oldName, String newName) void
RecoveryModeRemoteDirectory.storeUserAttributes
(String username, Map<String, Set<String>> attributes) RecoveryModeRemoteDirectory.updateUser
(UserTemplate user) void
RecoveryModeRemoteDirectory.updateUserCredential
(String username, PasswordCredential credential) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.exception.mapper
Methods in com.atlassian.crowd.plugin.rest.exception.mapper with parameters of type UserNotFoundExceptionModifier and TypeMethodDescriptionjavax.ws.rs.core.Response
UserNotFoundExceptionMapper.toResponse
(UserNotFoundException exception) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.controller
Methods in com.atlassian.crowd.plugin.rest.service.controller that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
GroupsController.addDirectUser
(String groupName, String username) Adds user as direct member of group.void
UsersController.addUserToGroup
(String userName, String groupName) Adds a user to a group.AuthenticationController.authenticateUser
(String username, PasswordEntity password, URI baseUri) Authenticates the user with the givenusername
andpassword
.void
UsersController.clearUserPassword
(String username) Clears a user's password, so that the user cannot authenticate with any password.void
GroupsController.deleteDirectUser
(String groupName, String username) Removes the user membership.UsersController.findUserByKey
(String key, com.atlassian.plugins.rest.api.model.Link userLink, boolean expandAttributes) UsersController.findUserByName
(String name, com.atlassian.plugins.rest.api.model.Link userLink, boolean expandAttributes) Returns a UserEntity specified by the name.UsersController.getAvatarForUser
(String username, int sizeHint) UsersController.getDirectGroup
(String userName, String groupName, URI baseUri) Returns the specified group that the user is a direct member of.UsersController.getDirectGroups
(String userName, boolean expandGroups, boolean expandAttributes, int maxResults, int startIndex, URI baseUri) Returns the groups that the user is a direct member of.UsersController.getNestedGroup
(String userName, String groupName, URI baseUri) Returns the specified group that the user is a nested member of.UsersController.getNestedGroups
(String userName, boolean expandGroups, int maxResults, int startIndex, URI baseUri) Returns the groups that the user is a nested member of.void
TokenController.invalidateTokensForUser
(String username, String exclusionToken, String applicationName) void
UsersController.removeUser
(String username) Removes the user.void
UsersController.removeUserAttribute
(String username, String attributeName) Removes the user attribute.void
UsersController.removeUserFromGroup
(String userName, String groupName) Removes a user from a group.UsersController.renameUser
(String oldUsername, com.atlassian.plugins.rest.api.model.Link userLink, String newUsername) Renames a user.void
UsersController.requestPasswordReset
(String username) Requests a password reset.void
UsersController.storeUserAttributes
(String username, MultiValuedAttributeEntityList attributes) Stores (add/replace) the user attributes.UsersController.updateUser
(UserEntity userEntity) Updates a user.void
UsersController.updateUserPassword
(String username, String password) Updates a user's password.AuthenticationController.userAuthenticated
(String username, URI baseUri) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.controller.account
Methods in com.atlassian.crowd.plugin.rest.service.controller.account that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
AccountManagementController.changePassword
(String username, String originalPassword, String newPassword) void
AccountManagementController.resetPassword
(String username, long directoryId, String password, String token) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.controller.admin
Methods in com.atlassian.crowd.plugin.rest.service.controller.admin that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
GroupLevelAdminController.deleteUserGroupAdministrator
(DirectoryEntityId targetGroupId, DirectoryEntityId adminId) GroupLevelAdminController.getAdminCandidates
(DirectoryEntityId groupId, String searchText, int limit) UsersSearchController.searchPotentialMembers
(DirectoryEntityId groupId, String userSearch, int limit) UsersSearchController.searchUsers
(RestPageRequest restPageRequest, UserSearchParams searchParams) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.controller.email
Methods in com.atlassian.crowd.plugin.rest.service.controller.email that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
ChangeEmailController.confirmEmailChange
(String token) void
ChangeEmailController.resendValidationToken()
-
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.controller.memberships
Methods in com.atlassian.crowd.plugin.rest.service.controller.memberships that throw UserNotFoundExceptionModifier and TypeMethodDescriptionUsersMembershipController.addUserToAllGroups
(DirectoryEntityId userId, List<DirectoryEntityId> groups) UsersMembershipController.removeUserFromAllGroups
(DirectoryEntityId userId, List<DirectoryEntityId> groups) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.resource.admin
Methods in com.atlassian.crowd.plugin.rest.service.resource.admin that throw UserNotFoundExceptionModifier and TypeMethodDescriptionjavax.ws.rs.core.Response
UserAdminResource.addUserToGroups
(DirectoryEntityId userId, GroupIdentifiersEntityList groups) javax.ws.rs.core.Response
GroupLevelAdminResource.deleteUserGroupAdministrator
(DirectoryEntityId targetGroupId, DirectoryEntityId adminId) GroupLevelAdminResource.getAdminCandidates
(DirectoryEntityId groupId, String search, int limit) javax.ws.rs.core.Response
UserAdminResource.removeUserFromGroups
(DirectoryEntityId userId, GroupIdentifiersEntityList groups) javax.ws.rs.core.Response
UserAdminResource.searchUsers
(RestPageRequest pageRequest, UserSearchParams params) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.resource.email
Methods in com.atlassian.crowd.plugin.rest.service.resource.email that throw UserNotFoundExceptionModifier and TypeMethodDescriptionjavax.ws.rs.core.Response
ChangeEmailResource.confirmEmailChange
(String token) javax.ws.rs.core.Response
ChangeEmailResource.resendValidationToken()
-
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.resource.memberships
Methods in com.atlassian.crowd.plugin.rest.service.resource.memberships that throw UserNotFoundExceptionModifier and TypeMethodDescriptionjavax.ws.rs.core.Response
GroupsMembershipResource.searchUsers
(DirectoryEntityId groupId, String userSearch, int limit) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.service.resource.usermanagement
Methods in com.atlassian.crowd.plugin.rest.service.resource.usermanagement that throw UserNotFoundExceptionModifier and TypeMethodDescriptionjavax.ws.rs.core.Response
UsersResource.addUserToGroup
(String userName, GroupEntity parentGroup) javax.ws.rs.core.Response
UsersResource.deleteUserPassword
(String userName) javax.ws.rs.core.Response
UsersResource.getAvatarForUser
(String username, int size) javax.ws.rs.core.Response
UsersResource.getDirectGroups
(String userName, String groupName, int maxResults, int startIndex) javax.ws.rs.core.Response
UsersResource.getNestedGroups
(String userName, String groupName, int maxResults, int startIndex) javax.ws.rs.core.Response
javax.ws.rs.core.Response
UsersResource.getUserAttributes
(String userName) javax.ws.rs.core.Response
GroupsResource.removeDirectGroupMembership
(String groupName, String username) javax.ws.rs.core.Response
UsersResource.removeUser
(String userName) javax.ws.rs.core.Response
UsersResource.removeUserAttribute
(String userName, String attributeName) javax.ws.rs.core.Response
UsersResource.removeUserFromGroup
(String userName, String groupName) javax.ws.rs.core.Response
UsersResource.renameUser
(String userName, RenameEntity newUserName) javax.ws.rs.core.Response
UsersResource.requestPasswordReset
(String userName) javax.ws.rs.core.Response
UsersResource.storeUserAttributes
(String userName, MultiValuedAttributeEntityList attributes) javax.ws.rs.core.Response
UsersResource.updateUser
(String userName, UserEntity userEntity) javax.ws.rs.core.Response
UsersResource.updateUserPassword
(String userName, PasswordEntity password) -
Uses of UserNotFoundException in com.atlassian.crowd.plugin.rest.util
Methods in com.atlassian.crowd.plugin.rest.util that throw UserNotFoundExceptionModifier and TypeMethodDescriptionstatic UserEntity
UserEntityUtil.expandUser
(ApplicationService applicationService, Application application, UserEntity minimalUserEntity, boolean expandAttributes) Expands a UserEntity from its minimal form to the expanded version.static UserEntity
UserEntityUtil.expandUser
(DirectoryManager directoryManager, long directoryId, UserEntity minimalUserEntity, boolean expandAttributes) -
Uses of UserNotFoundException in com.atlassian.crowd.plugins.testkit.rest
Methods in com.atlassian.crowd.plugins.testkit.rest that throw UserNotFoundExceptionModifier and TypeMethodDescriptionjavax.ws.rs.core.Response
TestKitUserResource.updateUserPasswordToExpired
(String username, long directoryId) -
Uses of UserNotFoundException in com.atlassian.crowd.service
Methods in com.atlassian.crowd.service that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
AuthenticatorUserCache.fetchInCache
(String username) Fetches a user with the given username in the cache, in case the user exists, but cannot be found from the cache yet.DirectoryEntitySearchService.searchGroups
(EntityQuery<Group> groupsQuery, List<Directory> directoriesRestriction) Returns groups matchinggroupsQuery
.DirectoryEntitySearchService.searchPotentialMembers
(EntityQuery<User> usersQuery, long directoryId, String groupName) Returns users that can be assigned as members of the specified group.DirectoryEntitySearchServiceImpl.searchPotentialMembers
(EntityQuery<User> query, long directoryId, String groupName) DirectoryEntitySearchService.searchUsers
(EntityQuery<User> usersQuery, List<Directory> directoriesRestriction) Returns users matchingusersQuery
. -
Uses of UserNotFoundException in com.atlassian.crowd.service.client
Methods in com.atlassian.crowd.service.client that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
CrowdClient.addGroupToGroup
(String childGroup, String parentGroup) Adds a group to a group.void
CrowdClient.addUserToGroup
(String username, String groupName) Adds a user to a group.CrowdClient.authenticateUser
(String username, String password) Authenticates a user with the server.CrowdClient.getGroupsForNestedUser
(String userName, int startIndex, int maxResults) Searches for groups that a user is a nested member of.CrowdClient.getGroupsForUser
(String userName, int startIndex, int maxResults) Searches for groups that a user is a direct member of.CrowdClient.getGroupsWithAttributesForUser
(String userName, int startIndex, int maxResults) Searches for groups that a user is a member of, and returns those groups with all their attributes.CrowdClient.getNamesOfGroupsForNestedUser
(String userName, int startIndex, int maxResults) Searches for groups that a user is a nested member of, returning the group names.CrowdClient.getNamesOfGroupsForUser
(String userName, int startIndex, int maxResults) Searches for groups that a user is a direct member of, returning the group names.Gets a User by user name.CrowdClient.getUserByKey
(String key) Gets a User by key.CrowdClient.getUserWithAttributes
(String name) Gets a User with Attributes by user name.void
CrowdClient.removeUser
(String username) Removes a user from the remote Crowd servervoid
CrowdClient.removeUserAttributes
(String username, String attributeName) Removes a user attribute from the server.void
CrowdClient.removeUserFromGroup
(String username, String groupName) Removes a user from a group.CrowdClient.renameUser
(String oldUsername, String newUsername) Renames a user on the remote Crowd server, initially finding them by their current username.void
CrowdClient.requestPasswordReset
(String username) Requests a password reset.void
Stores the user's attributes on the remote Crowd server.void
CrowdClient.updateUser
(User user) Updates a user on the remote Crowd server.void
CrowdClient.updateUserCredential
(String username, String password) Updates the user's password on the remote Crowd server.CrowdClient.userAuthenticated
(String username) -
Uses of UserNotFoundException in com.atlassian.crowd.service.email
Methods in com.atlassian.crowd.service.email that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
EmailChangeManagerImpl.changeEmail
(String token, String username) void
EmailChangeManagerImpl.resendEmail
(String username, long directoryId) -
Uses of UserNotFoundException in com.atlassian.crowd.service.permission
Methods in com.atlassian.crowd.service.permission that throw UserNotFoundExceptionModifier and TypeMethodDescriptionvoid
AuditingGroupAdministrationConfigurationService.grantGroupPermissions
(UserGroupAdministrationMapping mapping) void
GroupAdministrationConfigurationServiceImpl.grantGroupPermissions
(UserGroupAdministrationMapping mapping) void
AuditingGroupAdministrationConfigurationService.revokeGroupPermissions
(UserGroupAdministrationMapping mapping) void
GroupAdministrationConfigurationServiceImpl.revokeGroupPermissions
(UserGroupAdministrationMapping mapping)