Package org.keycloak.models.map.client
Interface MapClientEntity
- 
- All Superinterfaces:
- AbstractEntity,- EntityWithAttributes,- UpdatableEntity
 - All Known Implementing Classes:
- HotRodClientEntity.AbstractHotRodClientEntityDelegate,- HotRodClientEntityDelegate,- JpaClientEntity,- JpaClientMetadata,- MapClientEntity.AbstractClientEntity,- MapClientEntityDelegate,- MapClientEntityFieldDelegate,- MapClientEntityImpl,- MapClientEntityImpl.Empty
 
 public interface MapClientEntity extends AbstractEntity, UpdatableEntity, EntityWithAttributes - Author:
- hmlnarik
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classMapClientEntity.AbstractClientEntity- 
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntityUpdatableEntity.Impl
 
- 
 - 
Method Summary- 
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- 
removeClientScopevoid removeClientScope(String id) 
 - 
getProtocolMapperOptional<MapProtocolMapperEntity> getProtocolMapper(String id) 
 - 
getProtocolMappersSet<MapProtocolMapperEntity> getProtocolMappers() 
 - 
addProtocolMappervoid addProtocolMapper(MapProtocolMapperEntity mapping) 
 - 
removeProtocolMappervoid removeProtocolMapper(String id) 
 - 
addRedirectUrivoid addRedirectUri(String redirectUri) 
 - 
removeRedirectUrivoid removeRedirectUri(String redirectUri) 
 - 
addScopeMappingvoid addScopeMapping(String id) 
 - 
removeScopeMappingvoid removeScopeMapping(String id) 
 - 
getScopeMappingsCollection<String> getScopeMappings() 
 - 
addWebOriginvoid addWebOrigin(String webOrigin) 
 - 
removeWebOriginvoid removeWebOrigin(String webOrigin) 
 - 
removeAuthenticationFlowBindingOverridevoid removeAuthenticationFlowBindingOverride(String binding) 
 - 
setAuthenticationFlowBindingOverridevoid setAuthenticationFlowBindingOverride(String binding, String flowId) 
 - 
getBaseUrlString getBaseUrl() 
 - 
getClientAuthenticatorTypeString getClientAuthenticatorType() 
 - 
getClientIdString getClientId() 
 - 
getDescriptionString getDescription() 
 - 
getManagementUrlString getManagementUrl() 
 - 
getNameString getName() 
 - 
getNodeReRegistrationTimeoutInteger getNodeReRegistrationTimeout() 
 - 
getNotBeforeLong getNotBefore() 
 - 
getProtocolString getProtocol() 
 - 
getRealmIdString getRealmId() 
 - 
getRegistrationTokenString getRegistrationToken() 
 - 
getRootUrlString getRootUrl() 
 - 
getSecretString getSecret() 
 - 
isAlwaysDisplayInConsoleBoolean isAlwaysDisplayInConsole() 
 - 
isBearerOnlyBoolean isBearerOnly() 
 - 
isConsentRequiredBoolean isConsentRequired() 
 - 
isDirectAccessGrantsEnabledBoolean isDirectAccessGrantsEnabled() 
 - 
isEnabledBoolean isEnabled() 
 - 
isFrontchannelLogoutBoolean isFrontchannelLogout() 
 - 
isFullScopeAllowedBoolean isFullScopeAllowed() 
 - 
isImplicitFlowEnabledBoolean isImplicitFlowEnabled() 
 - 
isPublicClientBoolean isPublicClient() 
 - 
isServiceAccountsEnabledBoolean isServiceAccountsEnabled() 
 - 
isStandardFlowEnabledBoolean isStandardFlowEnabled() 
 - 
isSurrogateAuthRequiredBoolean isSurrogateAuthRequired() 
 - 
setAlwaysDisplayInConsolevoid setAlwaysDisplayInConsole(Boolean alwaysDisplayInConsole) 
 - 
setBaseUrlvoid setBaseUrl(String baseUrl) 
 - 
setBearerOnlyvoid setBearerOnly(Boolean bearerOnly) 
 - 
setClientAuthenticatorTypevoid setClientAuthenticatorType(String clientAuthenticatorType) 
 - 
setClientIdvoid setClientId(String clientId) 
 - 
setConsentRequiredvoid setConsentRequired(Boolean consentRequired) 
 - 
setDescriptionvoid setDescription(String description) 
 - 
setDirectAccessGrantsEnabledvoid setDirectAccessGrantsEnabled(Boolean directAccessGrantsEnabled) 
 - 
setEnabledvoid setEnabled(Boolean enabled) 
 - 
setFrontchannelLogoutvoid setFrontchannelLogout(Boolean frontchannelLogout) 
 - 
setFullScopeAllowedvoid setFullScopeAllowed(Boolean fullScopeAllowed) 
 - 
setImplicitFlowEnabledvoid setImplicitFlowEnabled(Boolean implicitFlowEnabled) 
 - 
setManagementUrlvoid setManagementUrl(String managementUrl) 
 - 
setNamevoid setName(String name) 
 - 
setNodeReRegistrationTimeoutvoid setNodeReRegistrationTimeout(Integer nodeReRegistrationTimeout) 
 - 
setNotBeforevoid setNotBefore(Long notBefore) 
 - 
setProtocolvoid setProtocol(String protocol) 
 - 
setPublicClientvoid setPublicClient(Boolean publicClient) 
 - 
setRealmIdvoid setRealmId(String realmId) 
 - 
setRegistrationTokenvoid setRegistrationToken(String registrationToken) 
 - 
setRootUrlvoid setRootUrl(String rootUrl) 
 - 
setSecretvoid setSecret(String secret) 
 - 
setServiceAccountsEnabledvoid setServiceAccountsEnabled(Boolean serviceAccountsEnabled) 
 - 
setStandardFlowEnabledvoid setStandardFlowEnabled(Boolean standardFlowEnabled) 
 - 
setSurrogateAuthRequiredvoid setSurrogateAuthRequired(Boolean surrogateAuthRequired) 
 
- 
 
-