Package org.keycloak.models.map.role
Class MapRoleAdapter
java.lang.Object
org.keycloak.models.map.role.AbstractRoleModel<MapRoleEntity>
org.keycloak.models.map.role.MapRoleAdapter
- All Implemented Interfaces:
RoleModel
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.keycloak.models.RoleModel
RoleModel.RoleNameChangeEvent, RoleModel.SearchableFields
-
Field Summary
Fields inherited from class org.keycloak.models.map.role.AbstractRoleModel
entity, realm, session
-
Constructor Summary
ConstructorDescriptionMapRoleAdapter
(KeycloakSession session, RealmModel realm, MapRoleEntity entity) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addCompositeRole
(RoleModel role) getAttributeStream
(String name) Returns all role's attributes that match the given name as a stream.Returns all composite roles as a stream.getCompositesStream
(String search, Integer first, Integer max) Returns a paginated stream of composite roles ofthis
role that contain given string in its name.getId()
getName()
boolean
boolean
boolean
void
removeAttribute
(String name) void
removeCompositeRole
(RoleModel role) void
setAttribute
(String name, List<String> values) void
setDescription
(String description) void
void
setSingleAttribute
(String name, String value) toString()
Methods inherited from class org.keycloak.models.map.role.AbstractRoleModel
equals, hashCode
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.keycloak.models.RoleModel
getFirstAttribute
-
Constructor Details
-
MapRoleAdapter
-
-
Method Details
-
getId
-
getName
-
getDescription
- Specified by:
getDescription
in interfaceRoleModel
-
setDescription
- Specified by:
setDescription
in interfaceRoleModel
-
setName
-
isComposite
public boolean isComposite()- Specified by:
isComposite
in interfaceRoleModel
-
getCompositesStream
Description copied from interface:RoleModel
Returns all composite roles as a stream.- Specified by:
getCompositesStream
in interfaceRoleModel
- Returns:
- Stream of
RoleModel
. Never returnsnull
.
-
getCompositesStream
Description copied from interface:RoleModel
Returns a paginated stream of composite roles ofthis
role that contain given string in its name.- Specified by:
getCompositesStream
in interfaceRoleModel
- Parameters:
search
- Case-insensitive search stringfirst
- Index of the first result to return. Ignored if negative ornull
.max
- Maximum number of results to return. Ignored if negative ornull
.- Returns:
- A stream of requested roles ordered by the role name
-
addCompositeRole
- Specified by:
addCompositeRole
in interfaceRoleModel
-
removeCompositeRole
- Specified by:
removeCompositeRole
in interfaceRoleModel
-
isClientRole
public boolean isClientRole()- Specified by:
isClientRole
in interfaceRoleModel
-
getContainerId
- Specified by:
getContainerId
in interfaceRoleModel
-
getContainer
- Specified by:
getContainer
in interfaceRoleModel
-
setAttribute
- Specified by:
setAttribute
in interfaceRoleModel
-
setSingleAttribute
- Specified by:
setSingleAttribute
in interfaceRoleModel
-
removeAttribute
- Specified by:
removeAttribute
in interfaceRoleModel
-
getAttributes
- Specified by:
getAttributes
in interfaceRoleModel
-
hasRole
-
getAttributeStream
Description copied from interface:RoleModel
Returns all role's attributes that match the given name as a stream.- Specified by:
getAttributeStream
in interfaceRoleModel
- Parameters:
name
-String
Name of an attribute to be used as a filter.- Returns:
- Stream of
String
. Never returnsnull
.
-
toString
-