Class ReactiveUserManager
- java.lang.Object
-
- com.couchbase.client.java.manager.user.ReactiveUserManager
-
public class ReactiveUserManager extends Object
-
-
Constructor Summary
Constructors Constructor Description ReactiveUserManager(AsyncUserManager async)
-
Method Summary
-
-
-
Constructor Detail
-
ReactiveUserManager
public ReactiveUserManager(AsyncUserManager async)
-
-
Method Detail
-
getUser
public Mono<UserAndMetadata> getUser(AuthDomain domain, String username)
-
getUser
public Mono<UserAndMetadata> getUser(AuthDomain domain, String username, GetUserOptions options)
-
getAllUsers
public Flux<UserAndMetadata> getAllUsers()
-
getAllUsers
public Flux<UserAndMetadata> getAllUsers(GetAllUsersOptions options)
-
getRoles
public Flux<RoleAndDescription> getRoles()
-
getRoles
public Flux<RoleAndDescription> getRoles(GetRolesOptions options)
-
changePassword
public Mono<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...)
-
changePassword
public Mono<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.
-
upsertUser
public Mono<Void> upsertUser(User user, UpsertUserOptions options)
-
dropUser
public Mono<Void> dropUser(String username, DropUserOptions options)
-
getGroup
public Mono<Group> getGroup(String groupName, GetGroupOptions options)
-
getAllGroups
public Flux<Group> getAllGroups(GetAllGroupsOptions options)
-
upsertGroup
public Mono<Void> upsertGroup(Group group, UpsertGroupOptions options)
-
dropGroup
public Mono<Void> dropGroup(String groupName, DropGroupOptions options)
-
-