Searched defs:availableScopes (Results 1 - 2 of 2) sorted by relevance
| /forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/provider/ |
| H A D | Scope.java | 50 * @param availableScopes The set of scopes available for the client requesting the access token 55 Set<String> availableScopes, 62 * @param availableScopes The set of scopes available for the client requesting the access token 67 Set<String> availableScopes, 75 * @param availableScopes The set of scopes given to the original Access Token 81 Set<String> availableScopes, 54 scopeToPresentOnAuthorizationPage(Set<String> requestedScopes, Set<String> availableScopes, Set<String> defaultScopes) argument 66 scopeRequestedForAccessToken(Set<String> requestedScopes, Set<String> availableScopes, Set<String> defaultScopes) argument 80 scopeRequestedForRefreshToken(Set<String> requestedScopes, Set<String> availableScopes, Set<String> allScopes, Set<String> defaultScopes) argument
|
| /forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/provider/impl/ |
| H A D | ScopeImpl.java | 122 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);
|
Completed in 27 milliseconds