Package org.keycloak.models.jpa
Class RoleAdapter
- java.lang.Object
- 
- org.keycloak.models.jpa.RoleAdapter
 
- 
- All Implemented Interfaces:
- JpaModel<RoleEntity>,- RoleModel
 
 public class RoleAdapter extends Object implements RoleModel, JpaModel<RoleEntity> - Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.keycloak.models.RoleModelRoleModel.RoleNameChangeEvent, RoleModel.SearchableFields
 
- 
 - 
Field SummaryFields Modifier and Type Field Description protected javax.persistence.EntityManageremprotected RealmModelrealmprotected RoleEntityroleprotected KeycloakSessionsession
 - 
Constructor SummaryConstructors Constructor Description RoleAdapter(KeycloakSession session, RealmModel realm, javax.persistence.EntityManager em, RoleEntity role)
 - 
Method Summary- 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.keycloak.models.RoleModelgetFirstAttribute
 
- 
 
- 
- 
- 
Field Detail- 
roleprotected RoleEntity role 
 - 
emprotected javax.persistence.EntityManager em 
 - 
realmprotected RealmModel realm 
 - 
sessionprotected KeycloakSession session 
 
- 
 - 
Constructor Detail- 
RoleAdapterpublic RoleAdapter(KeycloakSession session, RealmModel realm, javax.persistence.EntityManager em, RoleEntity role) 
 
- 
 - 
Method Detail- 
getEntitypublic RoleEntity getEntity() - Specified by:
- getEntityin interface- JpaModel<RoleEntity>
 
 - 
setRolepublic void setRole(RoleEntity role) 
 - 
getDescriptionpublic String getDescription() - Specified by:
- getDescriptionin interface- RoleModel
 
 - 
setDescriptionpublic void setDescription(String description) - Specified by:
- setDescriptionin interface- RoleModel
 
 - 
isCompositepublic boolean isComposite() - Specified by:
- isCompositein interface- RoleModel
 
 - 
addCompositeRolepublic void addCompositeRole(RoleModel role) - Specified by:
- addCompositeRolein interface- RoleModel
 
 - 
removeCompositeRolepublic void removeCompositeRole(RoleModel role) - Specified by:
- removeCompositeRolein interface- RoleModel
 
 - 
getCompositesStreampublic Stream<RoleModel> getCompositesStream() Description copied from interface:RoleModelReturns all composite roles as a stream.- Specified by:
- getCompositesStreamin interface- RoleModel
- Returns:
- Stream of RoleModel. Never returnsnull.
 
 - 
getCompositesStreampublic Stream<RoleModel> getCompositesStream(String search, Integer first, Integer max) Description copied from interface:RoleModelReturns a paginated stream of composite roles ofthisrole that contain given string in its name.- Specified by:
- getCompositesStreamin interface- RoleModel
- Parameters:
- search- Case-insensitive search string
- first- Index of the first result to return. Ignored if negative or- null.
- max- Maximum number of results to return. Ignored if negative or- null.
- Returns:
- A stream of requested roles ordered by the role name
 
 - 
setSingleAttributepublic void setSingleAttribute(String name, String value) - Specified by:
- setSingleAttributein interface- RoleModel
 
 - 
setAttributepublic void setAttribute(String name, List<String> values) - Specified by:
- setAttributein interface- RoleModel
 
 - 
removeAttributepublic void removeAttribute(String name) - Specified by:
- removeAttributein interface- RoleModel
 
 - 
getAttributeStreampublic Stream<String> getAttributeStream(String name) Description copied from interface:RoleModelReturns all role's attributes that match the given name as a stream.- Specified by:
- getAttributeStreamin interface- RoleModel
- Parameters:
- name-- StringName of an attribute to be used as a filter.
- Returns:
- Stream of String. Never returnsnull.
 
 - 
getAttributespublic Map<String,List<String>> getAttributes() - Specified by:
- getAttributesin interface- RoleModel
 
 - 
isClientRolepublic boolean isClientRole() - Specified by:
- isClientRolein interface- RoleModel
 
 - 
getContainerIdpublic String getContainerId() - Specified by:
- getContainerIdin interface- RoleModel
 
 - 
getContainerpublic RoleContainerModel getContainer() - Specified by:
- getContainerin interface- RoleModel
 
 
- 
 
-