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 classMapGroupEntity.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 voidaddGrantedRole(String role)Set<String>getGrantedRoles()StringgetName()StringgetParentId()StringgetRealmId()voidremoveGrantedRole(String role)voidsetGrantedRoles(Set<String> grantedRoles)voidsetName(String name)voidsetParentId(String parentId)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
-
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)
-
-