Interface MapClientScopeEntity
-
- All Superinterfaces:
AbstractEntity,EntityWithAttributes,UpdatableEntity
- All Known Implementing Classes:
HotRodClientScopeEntity.AbstractHotRodClientScopeEntityDelegate,HotRodClientScopeEntityDelegate,JpaClientScopeEntity,JpaClientScopeMetadata,MapClientScopeEntity.AbstractClientScopeEntity,MapClientScopeEntityDelegate,MapClientScopeEntityFieldDelegate,MapClientScopeEntityImpl,MapClientScopeEntityImpl.Empty
public interface MapClientScopeEntity extends AbstractEntity, UpdatableEntity, EntityWithAttributes
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMapClientScopeEntity.AbstractClientScopeEntity-
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 voidaddProtocolMapper(MapProtocolMapperEntity mapping)voidaddScopeMapping(String id)StringgetDescription()StringgetName()StringgetProtocol()Optional<MapProtocolMapperEntity>getProtocolMapper(String id)Set<MapProtocolMapperEntity>getProtocolMappers()StringgetRealmId()Collection<String>getScopeMappings()voidremoveProtocolMapper(String id)voidremoveScopeMapping(String id)voidsetDescription(String description)voidsetName(String name)voidsetProtocol(String protocol)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()
-
getDescription
String getDescription()
-
getProtocol
String getProtocol()
-
getRealmId
String getRealmId()
-
setName
void setName(String name)
-
setDescription
void setDescription(String description)
-
setProtocol
void setProtocol(String protocol)
-
setRealmId
void setRealmId(String realmId)
-
getProtocolMapper
Optional<MapProtocolMapperEntity> getProtocolMapper(String id)
-
getProtocolMappers
Set<MapProtocolMapperEntity> getProtocolMappers()
-
addProtocolMapper
void addProtocolMapper(MapProtocolMapperEntity mapping)
-
removeProtocolMapper
void removeProtocolMapper(String id)
-
addScopeMapping
void addScopeMapping(String id)
-
removeScopeMapping
void removeScopeMapping(String id)
-
getScopeMappings
Collection<String> getScopeMappings()
-
-