Class HttpAuthenticationChannelProviderFactory
- java.lang.Object
- 
- org.keycloak.protocol.oidc.grants.ciba.channel.HttpAuthenticationChannelProviderFactory
 
- 
- All Implemented Interfaces:
- AuthenticationChannelProviderFactory,- EnvironmentDependentProviderFactory,- ProviderFactory<AuthenticationChannelProvider>
 
 public class HttpAuthenticationChannelProviderFactory extends Object implements AuthenticationChannelProviderFactory - Author:
- Takashi Norimatsu
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected StringhttpAuthenticationChannelUristatic StringPROVIDER_ID
 - 
Constructor SummaryConstructors Constructor Description HttpAuthenticationChannelProviderFactory()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()This is called when the server shuts down.AuthenticationChannelProvidercreate(KeycloakSession session)List<ProviderConfigProperty>getConfigMetadata()Returns the metadata for each configuration property supported by this factory.StringgetId()voidinit(Config.Scope config)Only called once when the factory is first created.voidpostInit(KeycloakSessionFactory factory)Called after all provider factories have been initialized- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.keycloak.protocol.oidc.grants.ciba.channel.AuthenticationChannelProviderFactoryisSupported
 - 
Methods inherited from interface org.keycloak.provider.EnvironmentDependentProviderFactoryisSupported
 - 
Methods inherited from interface org.keycloak.provider.ProviderFactoryorder
 
- 
 
- 
- 
- 
Field Detail- 
PROVIDER_IDpublic static final String PROVIDER_ID - See Also:
- Constant Field Values
 
 - 
httpAuthenticationChannelUriprotected String httpAuthenticationChannelUri 
 
- 
 - 
Method Detail- 
createpublic AuthenticationChannelProvider create(KeycloakSession session) - Specified by:
- createin interface- ProviderFactory<AuthenticationChannelProvider>
 
 - 
initpublic void init(Config.Scope config) Description copied from interface:ProviderFactoryOnly called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
- initin interface- ProviderFactory<AuthenticationChannelProvider>
 
 - 
postInitpublic void postInit(KeycloakSessionFactory factory) Description copied from interface:ProviderFactoryCalled after all provider factories have been initialized- Specified by:
- postInitin interface- ProviderFactory<AuthenticationChannelProvider>
 
 - 
closepublic void close() Description copied from interface:ProviderFactoryThis is called when the server shuts down.- Specified by:
- closein interface- ProviderFactory<AuthenticationChannelProvider>
 
 - 
getIdpublic String getId() - Specified by:
- getIdin interface- ProviderFactory<AuthenticationChannelProvider>
 
 - 
getConfigMetadatapublic List<ProviderConfigProperty> getConfigMetadata() Description copied from interface:ProviderFactoryReturns the metadata for each configuration property supported by this factory.- Specified by:
- getConfigMetadatain interface- ProviderFactory<AuthenticationChannelProvider>
- Returns:
- a list with the metadata for each configuration property supported by this factory
 
 
- 
 
-