Searched defs:consentAttribute (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMOAuth2ProviderSettings.java235 String consentAttribute = null;
237 consentAttribute = getStringSetting(realm, OAuth2ProviderService.SAVED_CONSENT_ATTRIBUTE);
238 if (consentAttribute != null) {
241 Set<String> attributeSet = id.getAttribute(consentAttribute);
245 " in attribute:" + consentAttribute + " in realm:" + realm + " is:" + attributeSet);
271 + " in attribute:" + consentAttribute + " in realm:" + realm);
280 + consentAttribute + " for realm:" + realm, e);
477 String consentAttribute = null;
479 consentAttribute = getStringSetting(realm, OAuth2ProviderService.SAVED_CONSENT_ATTRIBUTE);
480 if (consentAttribute !
536 updateConsentValues(String consentAttribute, AMIdentity id, Set<String> consents) argument
[all...]
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DRealmOAuth2ProviderSettings.java281 String consentAttribute = "";
284 consentAttribute = settings.getStringSetting(realm, OAuth2Constants.OAuth2ProviderService.SAVED_CONSENT_ATTRIBUTE);
287 Set<String> attributeSet = id.getAttribute(consentAttribute);
291 " in attribute:" + consentAttribute + " in realm:" + realm + " is:" + attributeSet);
317 + " in attribute:" + consentAttribute + " in realm:" + realm);
326 + consentAttribute + " for realm:" + realm, e);
394 String consentAttribute = null;
396 consentAttribute = settings.getStringSetting(realm, OAuth2Constants.OAuth2ProviderService.SAVED_CONSENT_ATTRIBUTE);
397 if (consentAttribute != null) {
400 Set<String> existing = id.getAttribute(consentAttribute);
453 updateConsentValues(String consentAttribute, AMIdentity id, Set<String> consents) argument
[all...]

Completed in 30 milliseconds