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

/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMOAuth2ProviderSettings.java482 //get the current set of consents and add our new consent to it if they exist.
484 Set<String> consents = (existing != null) ? new HashSet<String>(existing) : new HashSet<String>(1);
491 consents.add(sb.toString());
494 logger.message("Saving consents:" + consents + " for resourceOwner: " + resourceOwner.getId()
497 updateConsentValues(consentAttribute, id, consents);
516 Set<String> consents = id.getAttribute(consentAttribute);
517 if (consents == null) {
521 Iterator<String> iterator = consents.iterator();
527 updateConsentValues(consentAttribute, id, consents);
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.java399 //get the current set of consents and add our new consent to it if they exist.
401 Set<String> consents = (existing != null) ? new HashSet<String>(existing) : new HashSet<String>(1);
408 consents.add(sb.toString());
411 logger.message("Saving consents:" + consents + " for resourceOwner: " + resourceOwner.getId()
414 updateConsentValues(consentAttribute, id, consents);
433 Set<String> consents = id.getAttribute(consentAttribute);
434 if (consents == null) {
438 Iterator<String> iterator = consents.iterator();
444 updateConsentValues(consentAttribute, id, consents);
453 updateConsentValues(String consentAttribute, AMIdentity id, Set<String> consents) argument
[all...]

Completed in 31 milliseconds