Searched defs:allowedGrantScopes (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/openid-connect-core/src/main/java/org/forgerock/openidconnect/
H A DClientBuilder.java32 private List<String> allowedGrantScopes; field in class:ClientBuilder
92 * @param allowedGrantScopes The allowed scopes.
94 public ClientBuilder setAllowedGrantScopes(List<String> allowedGrantScopes) { argument
95 this.allowedGrantScopes = allowedGrantScopes;
356 return new Client(clientID, clientType, redirectionURIs, allowedGrantScopes, defaultGrantScopes, displayName,
H A DClient.java319 * @param allowedGrantScopes The allowed scopes of the client.
346 public Client(String clientID, String clientType, List<String> redirectionURIs, List<String> allowedGrantScopes, argument
356 setAllowedGrantScopes(allowedGrantScopes);
594 * @param allowedGrantScopes The allowed scopes.
596 public void setAllowedGrantScopes(List<String> allowedGrantScopes) { argument
597 if (allowedGrantScopes != null && !allowedGrantScopes.isEmpty()) {
598 put(OAuth2Constants.ShortClientAttributeNames.SCOPES.getType(), allowedGrantScopes);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/
H A DClientBuilder.java32 private List<String> allowedGrantScopes; field in class:ClientBuilder
92 * @param allowedGrantScopes The allowed scopes.
94 public ClientBuilder setAllowedGrantScopes(List<String> allowedGrantScopes) { argument
95 this.allowedGrantScopes = allowedGrantScopes;
356 return new Client(clientID, clientType, redirectionURIs, allowedGrantScopes, defaultGrantScopes, displayName,
H A DClient.java319 * @param allowedGrantScopes The allowed scopes of the client.
346 public Client(String clientID, String clientType, List<String> redirectionURIs, List<String> allowedGrantScopes, argument
356 setAllowedGrantScopes(allowedGrantScopes);
594 * @param allowedGrantScopes The allowed scopes.
596 public void setAllowedGrantScopes(List<String> allowedGrantScopes) { argument
597 if (allowedGrantScopes != null && !allowedGrantScopes.isEmpty()) {
598 put(OAuth2Constants.ShortClientAttributeNames.SCOPES.getType(), allowedGrantScopes);

Completed in 35 milliseconds