Class ResourceOwnerPasswordCredentialsGrantTypeFactory
java.lang.Object
org.keycloak.protocol.oidc.grants.ResourceOwnerPasswordCredentialsGrantTypeFactory
- All Implemented Interfaces:
OAuth2GrantTypeFactory,ProviderFactory<OAuth2GrantType>
public class ResourceOwnerPasswordCredentialsGrantTypeFactory
extends Object
implements OAuth2GrantTypeFactory
Factory for OAuth 2.0 Resource Owner Password Credentials Grant
- Author:
- Dmitry Telegin
-
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.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
-
Constructor Details
-
ResourceOwnerPasswordCredentialsGrantTypeFactory
public ResourceOwnerPasswordCredentialsGrantTypeFactory()
-
-
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>
-
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>
-