Package org.keycloak.models.map.group
Class MapGroupEntityDelegate
- java.lang.Object
-
- org.keycloak.models.map.group.MapGroupEntityDelegate
-
- All Implemented Interfaces:
AbstractEntity
,HasDelegateProvider<MapGroupEntity>
,EntityWithAttributes
,UpdatableEntity
,MapGroupEntity
@Generated("org.keycloak.models.map.processor.GenerateEntityImplementationsProcessor") public class MapGroupEntityDelegate extends Object implements MapGroupEntity, HasDelegateProvider<MapGroupEntity>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.group.MapGroupEntity
MapGroupEntity.AbstractGroupEntity
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Constructor Summary
Constructors Constructor Description MapGroupEntityDelegate(DelegateProvider<MapGroupEntity> delegateProvider)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addGrantedRole(String role)
List<String>
getAttribute(String name)
Map<String,List<String>>
getAttributes()
DelegateProvider<MapGroupEntity>
getDelegateProvider()
Set<String>
getGrantedRoles()
String
getId()
String
getName()
String
getParentId()
String
getRealmId()
boolean
isUpdated()
Flag signalizing that any of the setters has been meaningfully used.void
removeAttribute(String name)
void
removeGrantedRole(String role)
void
setAttribute(String name, List<String> value)
void
setAttributes(Map<String,List<String>> attributes)
void
setGrantedRoles(Set<String> grantedRoles)
void
setId(String id)
void
setName(String name)
void
setParentId(String parentId)
void
setRealmId(String realmId)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag
-
-
-
-
Constructor Detail
-
MapGroupEntityDelegate
public MapGroupEntityDelegate(DelegateProvider<MapGroupEntity> delegateProvider)
-
-
Method Detail
-
getDelegateProvider
public DelegateProvider<MapGroupEntity> getDelegateProvider()
- Specified by:
getDelegateProvider
in interfaceHasDelegateProvider<MapGroupEntity>
-
getAttributes
public Map<String,List<String>> getAttributes()
- Specified by:
getAttributes
in interfaceEntityWithAttributes
-
setAttributes
public void setAttributes(Map<String,List<String>> attributes)
- Specified by:
setAttributes
in interfaceEntityWithAttributes
-
getAttribute
public List<String> getAttribute(String name)
- Specified by:
getAttribute
in interfaceEntityWithAttributes
-
setAttribute
public void setAttribute(String name, List<String> value)
- Specified by:
setAttribute
in interfaceEntityWithAttributes
-
removeAttribute
public void removeAttribute(String name)
- Specified by:
removeAttribute
in interfaceEntityWithAttributes
-
isUpdated
public boolean isUpdated()
Description copied from interface:UpdatableEntity
Flag signalizing that any of the setters has been meaningfully used.- Specified by:
isUpdated
in interfaceUpdatableEntity
- Returns:
-
getId
public String getId()
- Specified by:
getId
in interfaceAbstractEntity
-
setId
public void setId(String id)
- Specified by:
setId
in interfaceAbstractEntity
-
getName
public String getName()
- Specified by:
getName
in interfaceMapGroupEntity
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceMapGroupEntity
-
getParentId
public String getParentId()
- Specified by:
getParentId
in interfaceMapGroupEntity
-
setParentId
public void setParentId(String parentId)
- Specified by:
setParentId
in interfaceMapGroupEntity
-
getRealmId
public String getRealmId()
- Specified by:
getRealmId
in interfaceMapGroupEntity
-
setRealmId
public void setRealmId(String realmId)
- Specified by:
setRealmId
in interfaceMapGroupEntity
-
getGrantedRoles
public Set<String> getGrantedRoles()
- Specified by:
getGrantedRoles
in interfaceMapGroupEntity
-
setGrantedRoles
public void setGrantedRoles(Set<String> grantedRoles)
- Specified by:
setGrantedRoles
in interfaceMapGroupEntity
-
addGrantedRole
public void addGrantedRole(String role)
- Specified by:
addGrantedRole
in interfaceMapGroupEntity
-
removeGrantedRole
public void removeGrantedRole(String role)
- Specified by:
removeGrantedRole
in interfaceMapGroupEntity
-
-