public interface UserKeyService
Modifier and Type | Method and Description |
---|---|
String |
getKeyForUser(ApplicationUser user)
This convenience method is equivalent to
getKeyForUsername(user.getName()) , except that
it is null -safe. |
String |
getKeyForUsername(String username)
Returns the key that is associated with the given username.
|
String |
getUsernameForKey(String key)
Returns the (lower-cased) username that is associated with the given key.
|
String getUsernameForKey(String key)
Note that this returns the lower-case of the username (because username must act case-insensitive in our key->username map).
key
- the key to resolve to a username (may be null
)null
if key
is null
or unmapped. Note that a non-null
result does not guarantee that
the user still exists.String getKeyForUsername(String username)
username
- the username to resolve to a key (may be null
)null
if username
is null
or unmapped. Note that a non-null
result does not guarantee that
the user still exists.String getKeyForUser(ApplicationUser user)
getKeyForUsername(user.getName())
, except that
it is null
-safe.user
- the user to resolve to a key (may be null
)getKeyForUsername(String)
Copyright © 2002-2015 Atlassian. All Rights Reserved.