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 SummaryNested Classes Modifier and Type Interface Description static classMapClientScopeEntity.AbstractClientScopeEntity- 
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntityUpdatableEntity.Impl
 
- 
 - 
Method SummaryAll 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.AbstractEntitygetId, setId
 - 
Methods inherited from interface org.keycloak.models.map.common.EntityWithAttributesgetAttribute, getAttributes, removeAttribute, setAttribute, setAttributes
 - 
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntityclearUpdatedFlag, isUpdated
 
- 
 
- 
- 
- 
Method Detail- 
getNameString getName() 
 - 
getDescriptionString getDescription() 
 - 
getProtocolString getProtocol() 
 - 
getRealmIdString getRealmId() 
 - 
setNamevoid setName(String name) 
 - 
setDescriptionvoid setDescription(String description) 
 - 
setProtocolvoid setProtocol(String protocol) 
 - 
setRealmIdvoid setRealmId(String realmId) 
 - 
getProtocolMapperOptional<MapProtocolMapperEntity> getProtocolMapper(String id) 
 - 
getProtocolMappersSet<MapProtocolMapperEntity> getProtocolMappers() 
 - 
addProtocolMappervoid addProtocolMapper(MapProtocolMapperEntity mapping) 
 - 
removeProtocolMappervoid removeProtocolMapper(String id) 
 - 
addScopeMappingvoid addScopeMapping(String id) 
 - 
removeScopeMappingvoid removeScopeMapping(String id) 
 - 
getScopeMappingsCollection<String> getScopeMappings() 
 
- 
 
-