@ParametersAreNonnullByDefault
public interface ConfluenceUserDao
Modifier and Type | Method and Description |
---|---|
int |
countUnsyncedUsers()
Get a count of all unsynced users in Confluence.
|
void |
create(ConfluenceUser user)
Create a new ConfluenceUser.
|
@Nullable ConfluenceUser |
findByKey(@Nullable 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
ConfluenceUser s. |
@Nullable ConfluenceUser |
findByUsername(@Nullable 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.
|
@NonNull Set<ConfluenceUser> |
getAll() |
List<com.atlassian.sal.api.user.UserKey> |
getAllUserKeys()
Currently for testing purpose only
|
boolean |
isDeletedUser(ConfluenceUser user)
Check whether or not a user has been deleted completely from the application.
|
boolean |
isUnsyncedUser(ConfluenceUser user)
Check whether or not a user exists in the application as unsynced.
|
void |
remove(ConfluenceUser user)
Remove the supplied ConfluenceUser from persistence.
|
@NonNull ConfluenceUser |
rename(ConfluenceUser userToRename,
String newUsername,
boolean overrideExisting)
Renames a user
|
@NonNull ConfluenceUser |
rename(String oldUsername,
String newUsername,
boolean overrideExisting)
Renames a user
|
List<ConfluenceUser> |
searchUnsyncedUsers(String searchParam)
Search all unsynced users, whose account has been disconnected from an external directory, i.e.
|
void |
update(ConfluenceUser user)
Change a property of an existing ConfluenceUser.
|
void create(ConfluenceUser user)
void update(ConfluenceUser user)
void remove(ConfluenceUser 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.@NonNull ConfluenceUser rename(ConfluenceUser userToRename, String newUsername, boolean overrideExisting)
userToRename
- ConfluenceUser object representing user to renamenewUsername
- 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)
@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.
@NonNull Set<ConfluenceUser> getAll()
Map<String,com.atlassian.sal.api.user.UserKey> findUserKeysByLowerNames(Iterable<String> names)
Map<com.atlassian.sal.api.user.UserKey,String> findLowerNamesByKeys(Iterable<com.atlassian.sal.api.user.UserKey> keys)
boolean isDeletedUser(ConfluenceUser user)
boolean isUnsyncedUser(ConfluenceUser user)
isDeletedUser(ConfluenceUser)
). This may
include users who have technically been removed through Confluence prior to 6.13.0.List<ConfluenceUser> searchUnsyncedUsers(String searchParam)
searchParam
- the username parameter to search byint countUnsyncedUsers()
Map<com.atlassian.sal.api.user.UserKey,Optional<ConfluenceUser>> findByKeys(Set<com.atlassian.sal.api.user.UserKey> userkeys)
ConfluenceUser
s.userkeys
- The set of UserKey
sMap
of UserKey
s to Optional
ConfluenceUser
s. Every UserKey
present in the userkeys parameter will have an entry in this map.List<com.atlassian.sal.api.user.UserKey> getAllUserKeys()
Copyright © 2003–2020 Atlassian. All rights reserved.