@ParametersAreNonnullByDefault public interface ConfluenceUserDao
| Modifier and Type | Method and Description |
|---|---|
void |
create(ConfluenceUser user)
Create a new ConfluenceUser.
|
ConfluenceUser |
findByKey(com.atlassian.sal.api.user.UserKey key)
Retrieve a ConfluenceUser by the user key.
|
Map<com.atlassian.sal.api.user.UserKey,Optional<ConfluenceUser>> |
findByKeys(Set<com.atlassian.sal.api.user.UserKey> userkeys)
Performs a bulk lookup of multiple
ConfluenceUsers. |
ConfluenceUser |
findByUsername(String username)
Find the ConfluenceUser with the given user name.
|
Map<com.atlassian.sal.api.user.UserKey,String> |
findLowerNamesByKeys(Iterable<com.atlassian.sal.api.user.UserKey> keys)
Bulk operation to find lowercase name corresponding to user key.
|
Map<String,com.atlassian.sal.api.user.UserKey> |
findUserKeysByLowerNames(Iterable<String> names)
Bulk operation to find user key corresponding to lowercase name.
|
Set<ConfluenceUser> |
getAll() |
List<com.atlassian.sal.api.user.UserKey> |
getAllUserKeys()
Currently for testing purpose only
|
void |
remove(ConfluenceUser user)
Remove the supplied ConfluenceUser from persistence.
|
ConfluenceUser |
rename(String oldUsername,
String newUsername,
boolean overrideExisting)
Renames a user
|
void |
update(ConfluenceUser user)
Change a property of an existing ConfluenceUser.
|
void create(ConfluenceUser user)
user - void update(ConfluenceUser user)
user - void remove(ConfluenceUser user)
user - @Nonnull ConfluenceUser rename(String oldUsername, String newUsername, boolean overrideExisting)
oldUsername - old username for the usernewUsername - new username for the useroverrideExisting - True if possible existing mapping should make
way for the renamed one. False for opposite
behaviour.@Nullable ConfluenceUser findByKey(@Nullable com.atlassian.sal.api.user.UserKey key)
key - @Nullable ConfluenceUser findByUsername(@Nullable String username)
Note that username lookups are case-insensitive, so the user you get back may not have exactly the same name as the name passed to this method.
username - @Nonnull Set<ConfluenceUser> getAll()
Map<String,com.atlassian.sal.api.user.UserKey> findUserKeysByLowerNames(Iterable<String> names)
names - Map<com.atlassian.sal.api.user.UserKey,String> findLowerNamesByKeys(Iterable<com.atlassian.sal.api.user.UserKey> keys)
keys - Map<com.atlassian.sal.api.user.UserKey,Optional<ConfluenceUser>> findByKeys(Set<com.atlassian.sal.api.user.UserKey> userkeys)
ConfluenceUsers.userkeys - The set of UserKeysMap of UserKeys to Optional ConfluenceUsers. Every UserKey present in the userkeys parameter will have an entry in this map.List<com.atlassian.sal.api.user.UserKey> getAllUserKeys()
Copyright © 2003–2019 Atlassian. All rights reserved.