@Transactional public class AliasManagerImpl extends Object implements AliasManager
| Constructor and Description |
|---|
AliasManagerImpl(AliasDAO aliasDAO,
ApplicationService applicationService,
com.atlassian.event.api.EventPublisher eventPublisher) |
| Modifier and Type | Method and Description |
|---|---|
String |
findAliasByUsername(Application application,
String username)
Will return the 'alias' associated to the user.
|
Map<String,String> |
findAliasesByUsernames(Application application,
Iterable<String> usernames)
Will return application-specific aliases for the provided users.
|
Map<String,String> |
findAllAliasesByUsernames(Application application)
Returns application-specific aliases for all users.
|
String |
findUsernameByAlias(Application application,
String authenticatingUsername)
Will return the 'real' username of the authenticating user.
|
void |
removeAlias(Application application,
String username)
Remove an application-specific alias for a username.
|
void |
removeAliasesForUser(String username)
Removes all the aliases registered for a given username in all applications (there may be different users)
|
List<String> |
search(EntityQuery entityQuery)
Perform an
AliasQuery search on the alias tables of Crowd. |
void |
storeAlias(Application application,
String username,
String alias)
Add or update the application-specific alias for a username.
|
public AliasManagerImpl(AliasDAO aliasDAO, ApplicationService applicationService, com.atlassian.event.api.EventPublisher eventPublisher)
public String findUsernameByAlias(Application application, String authenticatingUsername)
AliasManagerfindUsernameByAlias in interface AliasManagerapplication - the application the user is associated withauthenticatingUsername - the username passed to the application for authenticationpublic String findAliasByUsername(Application application, String username)
AliasManagerfindAliasByUsername in interface AliasManagerapplication - the application the user is associated withusername - the 'real' username of the userpublic void storeAlias(Application application, String username, String alias) throws AliasAlreadyInUseException
AliasManagerstoreAlias in interface AliasManagerapplication - application context.username - real username of user in directory.alias - application-specific alias (cannot be null or blank).AliasAlreadyInUseException - the alias is already in use by another user for the given application.public void removeAlias(Application application, String username) throws AliasAlreadyInUseException
AliasManagerremoveAlias in interface AliasManagerapplication - application context.username - real username of user in directory.AliasAlreadyInUseException - the username is already in use by another user as their alias for the given application.public List<String> search(EntityQuery entityQuery)
AliasManagerAliasQuery search on the alias tables of Crowd.search in interface AliasManagerentityQuery - Will accept an entity query for aliases as an AliasQueryList<String> of usernames for a given AliasQuery or an empty listpublic void removeAliasesForUser(String username)
AliasManagerremoveAliasesForUser in interface AliasManagerpublic Map<String,String> findAliasesByUsernames(Application application, Iterable<String> usernames)
AliasManagerfindAliasesByUsernames in interface AliasManagerapplication - application contextusernames - the usernames for which the aliases will be retrievedpublic Map<String,String> findAllAliasesByUsernames(Application application)
AliasManagerfindAllAliasesByUsernames in interface AliasManagerapplication - application contextCopyright © 2021 Atlassian. All rights reserved.