Class CibaGrantTypeFactory
java.lang.Object
org.keycloak.protocol.oidc.grants.ciba.CibaGrantTypeFactory
- All Implemented Interfaces:
OAuth2GrantTypeFactory,EnvironmentDependentProviderFactory,ProviderFactory<OAuth2GrantType>
public class CibaGrantTypeFactory
extends Object
implements OAuth2GrantTypeFactory, EnvironmentDependentProviderFactory
Factory for OpenID Connect Client-Initiated Backchannel Authentication Flow
- Author:
- Dmitry Telegin
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()This is called when the server shuts down.create(KeycloakSession session) getId()voidinit(Config.Scope config) Only called once when the factory is first created.booleanisSupported(Config.Scope config) Check if the provider is supported and should be available based on the provider configuration.voidpostInit(KeycloakSessionFactory factory) Called after all provider factories have been initializedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.keycloak.provider.ProviderFactory
dependsOn, getConfigMetadata, order
-
Field Details
-
GRANT_SHORTCUT
- See Also:
-
-
Constructor Details
-
CibaGrantTypeFactory
public CibaGrantTypeFactory()
-
-
Method Details
-
getId
- Specified by:
getIdin interfaceProviderFactory<OAuth2GrantType>
-
getShortcut
- Specified by:
getShortcutin interfaceOAuth2GrantTypeFactory- Returns:
- usually like 3-letters shortcut of specific grants. It can be useful for example in the tokens when the amount of characters should be limited and hence using full grant name is not ideal. Shortcut should be unique across grants.
-
create
- Specified by:
createin interfaceProviderFactory<OAuth2GrantType>
-
isSupported
Description copied from interface:EnvironmentDependentProviderFactoryCheck if the provider is supported and should be available based on the provider configuration.- Specified by:
isSupportedin interfaceEnvironmentDependentProviderFactory- Parameters:
config- the provider configuration- Returns:
trueif the provider is supported. Otherwise,false.
-
init
Description copied from interface:ProviderFactoryOnly called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
initin interfaceProviderFactory<OAuth2GrantType>
-
postInit
Description copied from interface:ProviderFactoryCalled after all provider factories have been initialized- Specified by:
postInitin interfaceProviderFactory<OAuth2GrantType>
-
close
public void close()Description copied from interface:ProviderFactoryThis is called when the server shuts down.- Specified by:
closein interfaceProviderFactory<OAuth2GrantType>
-