Class AsyncUserManager
- java.lang.Object
-
- com.couchbase.client.java.manager.user.AsyncUserManager
-
public class AsyncUserManager extends Object
-
-
Constructor Summary
Constructors Constructor Description AsyncUserManager(Core core)
-
Method Summary
-
-
-
Constructor Detail
-
AsyncUserManager
public AsyncUserManager(Core core)
-
-
Method Detail
-
getUser
public CompletableFuture<UserAndMetadata> getUser(AuthDomain domain, String username)
-
getUser
public CompletableFuture<UserAndMetadata> getUser(AuthDomain domain, String username, GetUserOptions options)
-
getAllUsers
public CompletableFuture<List<UserAndMetadata>> getAllUsers()
-
getAllUsers
public CompletableFuture<List<UserAndMetadata>> getAllUsers(GetAllUsersOptions options)
-
getRoles
public CompletableFuture<List<RoleAndDescription>> getRoles()
-
getRoles
public CompletableFuture<List<RoleAndDescription>> getRoles(GetRolesOptions options)
-
changePassword
public CompletableFuture<Void> changePassword(String newPassword)
Changes the password of the currently authenticated user. SDK must be re-started and a new connection established after running, as the previous credentials will no longer be valid.- Parameters:
newPassword
- String to replace the previous password with.
-
changePassword
public CompletableFuture<Void> changePassword(String newPassword, ChangePasswordOptions options)
Changes the password of the currently authenticated user. SDK must be re-started and a new connection established after running, as the previous credentials will no longer be valid.- Parameters:
newPassword
- String to replace the previous password with.options
- Common options (timeout, retry...)
-
upsertUser
public CompletableFuture<Void> upsertUser(User user)
-
upsertUser
public CompletableFuture<Void> upsertUser(User user, UpsertUserOptions options)
-
dropUser
public CompletableFuture<Void> dropUser(String username)
-
dropUser
public CompletableFuture<Void> dropUser(String username, DropUserOptions options)
-
getGroup
public CompletableFuture<Group> getGroup(String groupName)
-
getGroup
public CompletableFuture<Group> getGroup(String groupName, GetGroupOptions options)
-
getAllGroups
public CompletableFuture<List<Group>> getAllGroups()
-
getAllGroups
public CompletableFuture<List<Group>> getAllGroups(GetAllGroupsOptions options)
-
upsertGroup
public CompletableFuture<Void> upsertGroup(Group group)
-
upsertGroup
public CompletableFuture<Void> upsertGroup(Group group, UpsertGroupOptions options)
-
dropGroup
public CompletableFuture<Void> dropGroup(String groupName)
-
dropGroup
public CompletableFuture<Void> dropGroup(String groupName, DropGroupOptions options)
-
-