Package org.keycloak.models.map.group
Interface MapGroupEntity
-
- All Superinterfaces:
AbstractEntity
,EntityWithAttributes
,UpdatableEntity
- All Known Implementing Classes:
HotRodGroupEntity.AbstractHotRodGroupEntityDelegate
,HotRodGroupEntityDelegate
,JpaGroupEntity
,JpaGroupMetadata
,MapGroupEntity.AbstractGroupEntity
,MapGroupEntityDelegate
,MapGroupEntityFieldDelegate
,MapGroupEntityImpl
,MapGroupEntityImpl.Empty
public interface MapGroupEntity extends UpdatableEntity, AbstractEntity, EntityWithAttributes
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
MapGroupEntity.AbstractGroupEntity
-
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
addGrantedRole(String role)
Set<String>
getGrantedRoles()
String
getName()
String
getParentId()
String
getRealmId()
void
removeGrantedRole(String role)
void
setGrantedRoles(Set<String> grantedRoles)
void
setName(String name)
void
setParentId(String parentId)
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
-
getName
String getName()
-
setName
void setName(String name)
-
getParentId
String getParentId()
-
setParentId
void setParentId(String parentId)
-
getRealmId
String getRealmId()
-
setRealmId
void setRealmId(String realmId)
-
addGrantedRole
void addGrantedRole(String role)
-
removeGrantedRole
void removeGrantedRole(String role)
-
-