Uses of Interface
org.forgerock.oauth2.core.ClientRegistration
-
Packages that use ClientRegistration Package Description org.forgerock.oauth2.core Defines the core classes to implement OAuth2 for OpenAM. -
-
Uses of ClientRegistration in org.forgerock.oauth2.core
Methods in org.forgerock.oauth2.core that return ClientRegistration Modifier and Type Method Description ClientRegistration
OAuth2Request. getClientRegistration()
Get the OAuth2 client registration of the request.Methods in org.forgerock.oauth2.core with parameters of type ClientRegistration Modifier and Type Method Description UserInfoClaims
ScopeValidator. getUserInfo(ClientRegistration clientRegistration, AccessToken token, OAuth2Request request)
Gets the resource owners information based on an issued access token.void
OAuth2Request. setClientRegistration(ClientRegistration clientRegistration)
Set the OAuth2 client registration.Set<String>
ScopeValidator. validateAccessTokenScope(ClientRegistration clientRegistration, Set<String> scope, OAuth2Request request)
Provided as an extension point to allow the OAuth2 provider to customise the scope requested when an access token is requested.Set<String>
ScopeValidator. validateAuthorizationScope(ClientRegistration clientRegistration, Set<String> scope, OAuth2Request request)
Provided as an extension point to allow the OAuth2 provider to customise the scope requested when authorization is requested.Set<String>
ScopeValidator. validateBackChannelAuthorizationScope(ClientRegistration clientRegistration, Set<String> requestedScopes, OAuth2Request request)
Provided as an extension point to allow the OAuth2 provider to customize the scope requested when performing a client initiated back channel authentication.Set<String>
ScopeValidator. validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, Set<String> tokenScope, OAuth2Request request)
Provided as an extension point to allow the OAuth2 provider to customise the scope requested when a refresh token is requested.
-