Package org.keycloak.models.map.role
Interface MapRoleEntity
-
- All Superinterfaces:
AbstractEntity,EntityWithAttributes,UpdatableEntity
- All Known Implementing Classes:
HotRodRoleEntity.AbstractHotRodRoleEntityDelegate,HotRodRoleEntityDelegate,JpaMapRoleEntityDelegate,JpaRoleEntity,JpaRoleMetadata,LdapMapRoleEntityFieldDelegate,MapRoleEntity.AbstractRoleEntity,MapRoleEntityDelegate,MapRoleEntityFieldDelegate,MapRoleEntityImpl,MapRoleEntityImpl.Empty
public interface MapRoleEntity extends AbstractEntity, UpdatableEntity, EntityWithAttributes
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMapRoleEntity.AbstractRoleEntity-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddCompositeRole(String roleId)StringgetClientId()Set<String>getCompositeRoles()StringgetDescription()StringgetName()StringgetRealmId()voidremoveCompositeRole(String roleId)voidsetClientId(String clientId)voidsetCompositeRoles(Set<String> compositeRoles)voidsetDescription(String description)voidsetName(String name)voidsetRealmId(String realmId)-
Methods inherited from interface org.keycloak.models.map.common.AbstractEntity
getId, setId
-
Methods inherited from interface org.keycloak.models.map.common.EntityWithAttributes
getAttribute, getAttributes, removeAttribute, setAttribute, setAttributes
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Method Detail
-
getRealmId
String getRealmId()
-
getClientId
String getClientId()
-
getName
String getName()
-
getDescription
String getDescription()
-
setRealmId
void setRealmId(String realmId)
-
setClientId
void setClientId(String clientId)
-
setName
void setName(String name)
-
setDescription
void setDescription(String description)
-
addCompositeRole
void addCompositeRole(String roleId)
-
removeCompositeRole
void removeCompositeRole(String roleId)
-
-