Searched defs:requestedScope (Results 1 - 10 of 10) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DScopeValidator.java72 * @param requestedScope The requested scope.
79 Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
H A DOAuth2ProviderSettings.java98 * @param requestedScope The requested scope.
105 Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DScopeValidator.java73 * @param requestedScope The requested scope.
80 Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
H A DAgentOAuth2ProviderSettings.java110 public Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
114 .validateRefreshTokenScope(clientRegistration, requestedScope, tokenScope, request);
H A DOAuth2ProviderSettings.java140 * @param requestedScope The requested scope.
147 Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
H A DRealmOAuth2ProviderSettings.java363 public Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
365 return getScopeValidator().validateRefreshTokenScope(clientRegistration, requestedScope, tokenScope, request);
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/provider/impl/
H A DScopeImpl.java122 public Set<String> scopeToPresentOnAuthorizationPage(Set<String> requestedScope, Set<String> availableScopes, argument
124 return selectValidScopes(requestedScope, defaultScopes, availableScopes);
130 public Set<String> scopeRequestedForAccessToken(Set<String> requestedScope, Set<String> availableScopes, argument
132 return selectValidScopes(requestedScope, defaultScopes, availableScopes);
138 public Set<String> scopeRequestedForRefreshToken(Set<String> requestedScope, Set<String> availableScopes, argument
140 return selectValidScopes(requestedScope, availableScopes, availableScopes);
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMScopeValidator.java165 public Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
167 return validateScopes(requestedScope, tokenScope, tokenScope, request);
H A DOpenAMOAuth2ProviderSettings.java347 public Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
349 return scopeValidator.scopeRequestedForRefreshToken(requestedScope, clientRegistration.getAllowedScopes(),
436 public Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
438 return getScopeValidator().validateRefreshTokenScope(clientRegistration, requestedScope, tokenScope, request);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMScopeValidator.java171 public Set<String> validateRefreshTokenScope(ClientRegistration clientRegistration, Set<String> requestedScope, argument
173 return validateScopes(requestedScope, tokenScope, tokenScope, request);

Completed in 45 milliseconds