Uses of Class
org.forgerock.secrets.oauth2.GrantTypeHandler
-
Packages that use GrantTypeHandler Package Description org.forgerock.secrets.oauth2 A Secrets API backend that can obtain OAuth 2 access tokens from a token endpoint, along with a collection of grant type handlers. -
-
Uses of GrantTypeHandler in org.forgerock.secrets.oauth2
Subclasses of GrantTypeHandler in org.forgerock.secrets.oauth2 Modifier and Type Class Description class
AuthorizationCodeGrantTypeHandler
A handler that can send an authorization code and optional PKCE verifier to the token endpoint to receive an access token.class
ClientCredentialsGrantTypeHandler
A grant type handler that can retrieve an access token using the client_credentials grant type.class
JwtBearerGrantTypeHandler
Implements the JWT bearer assertion grant type.class
RefreshTokenGrantTypeHandler
A grant type handler that can obtain an access token using a previously obtained refresh token.class
ResourceOwnerPasswordGrantTypeHandler
A grant type handler that can obtain an access token using the Resource Owner Password Credentials (ROPC) grant.Methods in org.forgerock.secrets.oauth2 with parameters of type GrantTypeHandler Modifier and Type Method Description AccessTokenSecretStore.Builder
AccessTokenSecretStore.Builder. withInitialGrantTypeHandler(GrantTypeHandler grantType)
Configures the initial grant type handler to use for calling the token endpoint.
-