Interface UserSystemManager
-
- All Superinterfaces:
UserManagementService
public interface UserSystemManager extends UserManagementService
Main users, groups and roles management API.
It provides a centralized entry point for using the different entities management API.
By default, two implementation are provided. A given one for the backend side and another one for the client side.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntityValidator<org.jboss.errai.security.shared.api.Group>groupsValidator()The group validator.booleanisActive()Check if the user system management service are active and successfully initialized.EntityValidator<org.jboss.errai.security.shared.api.Role>rolesValidator()The role validator.EntityValidator<org.jboss.errai.security.shared.api.identity.User>usersValidator()The user validator.-
Methods inherited from interface org.uberfire.ext.security.management.api.UserManagementService
groups, roles, users
-
-
-
-
Method Detail
-
usersValidator
EntityValidator<org.jboss.errai.security.shared.api.identity.User> usersValidator()
The user validator.
- Returns:
- The user validator instance.
-
groupsValidator
EntityValidator<org.jboss.errai.security.shared.api.Group> groupsValidator()
The group validator.
- Returns:
- The group validator instance.
-
rolesValidator
EntityValidator<org.jboss.errai.security.shared.api.Role> rolesValidator()
The role validator.
- Returns:
- The role validator instance.
-
isActive
boolean isActive()
Check if the user system management service are active and successfully initialized.
-
-