@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.
|
ConfluenceUser |
findByUsername(String username)
Find the ConfluenceUser with the given user name.
|
Set<ConfluenceUser> |
getAll() |
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()
Copyright © 2003–2015 Atlassian. All rights reserved.