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 class
MapRoleEntity.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 void
addCompositeRole(String roleId)
String
getClientId()
Set<String>
getCompositeRoles()
String
getDescription()
String
getName()
String
getRealmId()
void
removeCompositeRole(String roleId)
void
setClientId(String clientId)
void
setCompositeRoles(Set<String> compositeRoles)
void
setDescription(String description)
void
setName(String name)
void
setRealmId(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)
-
-