Package org.keycloak.protocol
Class AbstractLoginProtocolFactory
java.lang.Object
org.keycloak.protocol.AbstractLoginProtocolFactory
- All Implemented Interfaces:
LoginProtocolFactory
,ProviderFactory<LoginProtocol>
- Direct Known Subclasses:
DockerAuthV2ProtocolFactory
,OIDCLoginProtocolFactory
,SamlProtocolFactory
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
addDefaultClientScopes
(RealmModel realm, Stream<ClientModel> newClients) protected void
addDefaultClientScopes
(RealmModel realm, ClientModel newClient) protected abstract void
addDefaults
(ClientModel realm) void
close()
This is called when the server shuts down.void
createDefaultClientScopes
(RealmModel newRealm, boolean addScopesToExistingClients) Called when new realm is createdprotected abstract void
createDefaultClientScopesImpl
(RealmModel newRealm) Impl should create default client scopes.void
init
(Config.Scope config) Only called once when the factory is first created.void
postInit
(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, wait
Methods inherited from interface org.keycloak.protocol.LoginProtocolFactory
createProtocolEndpoint, getBuiltinMappers, setupClientDefaults
Methods inherited from interface org.keycloak.provider.ProviderFactory
create, getConfigMetadata, getId, order
-
Constructor Details
-
AbstractLoginProtocolFactory
public AbstractLoginProtocolFactory()
-
-
Method Details
-
init
Description copied from interface:ProviderFactory
Only called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
init
in interfaceProviderFactory<LoginProtocol>
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<LoginProtocol>
-
createDefaultClientScopes
Description copied from interface:LoginProtocolFactory
Called when new realm is created- Specified by:
createDefaultClientScopes
in interfaceLoginProtocolFactory
addScopesToExistingClients
- If true, then existing realm clients will be updated (created realm default scopes will be added to them)
-
createDefaultClientScopesImpl
Impl should create default client scopes. This is called usually when new realm is created -
addDefaultClientScopes
-
addDefaultClientScopes
-
addDefaults
-
close
public void close()Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceProviderFactory<LoginProtocol>
-