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
public class MapRoleAdapter extends AbstractRoleModel<MapRoleEntity> implements 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
Constructors Constructor Description MapRoleAdapter(KeycloakSession session, RealmModel realm, MapRoleEntity entity)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCompositeRole(RoleModel role)
Map<String,List<String>>
getAttributes()
Stream<String>
getAttributeStream(String name)
Returns all role's attributes that match the given name as a stream.Stream<RoleModel>
getCompositesStream()
Returns all composite roles as a stream.Stream<RoleModel>
getCompositesStream(String search, Integer first, Integer max)
Returns a paginated stream of composite roles ofthis
role that contain given string in its name.RoleContainerModel
getContainer()
String
getContainerId()
String
getDescription()
String
getId()
String
getName()
boolean
hasRole(RoleModel role)
boolean
isClientRole()
boolean
isComposite()
void
removeAttribute(String name)
void
removeCompositeRole(RoleModel role)
void
setAttribute(String name, List<String> values)
void
setDescription(String description)
void
setName(String name)
void
setSingleAttribute(String name, String value)
String
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 Detail
-
MapRoleAdapter
public MapRoleAdapter(KeycloakSession session, RealmModel realm, MapRoleEntity entity)
-
-
Method Detail
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceRoleModel
-
setDescription
public void setDescription(String description)
- Specified by:
setDescription
in interfaceRoleModel
-
isComposite
public boolean isComposite()
- Specified by:
isComposite
in interfaceRoleModel
-
getCompositesStream
public Stream<RoleModel> 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
public Stream<RoleModel> getCompositesStream(String search, Integer first, Integer max)
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
public void addCompositeRole(RoleModel role)
- Specified by:
addCompositeRole
in interfaceRoleModel
-
removeCompositeRole
public void removeCompositeRole(RoleModel role)
- Specified by:
removeCompositeRole
in interfaceRoleModel
-
isClientRole
public boolean isClientRole()
- Specified by:
isClientRole
in interfaceRoleModel
-
getContainerId
public String getContainerId()
- Specified by:
getContainerId
in interfaceRoleModel
-
getContainer
public RoleContainerModel getContainer()
- Specified by:
getContainer
in interfaceRoleModel
-
setAttribute
public void setAttribute(String name, List<String> values)
- Specified by:
setAttribute
in interfaceRoleModel
-
setSingleAttribute
public void setSingleAttribute(String name, String value)
- Specified by:
setSingleAttribute
in interfaceRoleModel
-
removeAttribute
public void removeAttribute(String name)
- Specified by:
removeAttribute
in interfaceRoleModel
-
getAttributes
public Map<String,List<String>> getAttributes()
- Specified by:
getAttributes
in interfaceRoleModel
-
getAttributeStream
public Stream<String> getAttributeStream(String name)
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
.
-
-