Package | Description |
---|---|
org.uberfire.ext.security.management.api | |
org.uberfire.ext.security.management.api.exception |
Modifier and Type | Method and Description |
---|---|
void |
UserManager.assignGroups(String username,
Collection<String> groups)
Assign a collection of groups to a user.
|
void |
UserManager.assignRoles(String username,
Collection<String> roles)
Assign a collection of roles to a user.
|
void |
GroupManager.assignUsers(String name,
Collection<String> users)
Assign the a group to a given collection of users.
|
void |
UserManager.changePassword(String username,
String newPassword)
Changes the user's password.
|
T |
AbstractEntityManager.create(T entity)
Creates a given entity in the backend security environment.
|
void |
AbstractEntityManager.delete(String... identifiers)
Deletes a given entity or entities (bulk delete) in the backend security environment.
|
T |
AbstractEntityManager.get(String identifier)
Obtain a single entity instance.
|
AbstractEntityManager.SearchResponse<T> |
AbstractEntityManager.search(AbstractEntityManager.SearchRequest request)
Search entities.
|
T |
AbstractEntityManager.update(T entity)
Creates a given entity in the backend security environment.
|
Modifier and Type | Class and Description |
---|---|
class |
EntityNotFoundException
Exception for user system management when some entity is not found.
|
class |
GroupNotFoundException
Exception for user system management when the group is not found.
|
class |
InvalidEntityIdentifierException
The entity's identifier is invalid.
|
class |
NoImplementationAvailableException
Exception for user system management when the service provider implementation class is not available.
|
class |
OperationFailedException
Exception for user system management when some remote operation has failed.
|
class |
RealmManagementNotAuthorizedException |
class |
UnsupportedServiceCapabilityException
Exception for user system management when trying to operate with a non supported feature (capability).
|
class |
UserAlreadyExistsException
Exception for user system management when the entity to create already exists.
|
class |
UserNotFoundException
Exception for user system management when the user is not found.
|
Copyright © 2012–2019 JBoss by Red Hat. All rights reserved.