Class OIDCAuthenticationResponseConsentContext
- java.lang.Object
-
- org.opensaml.messaging.context.BaseContext
-
- org.geant.idpextension.oidc.messaging.context.OIDCAuthenticationResponseConsentContext
-
- All Implemented Interfaces:
Iterable<org.opensaml.messaging.context.BaseContext>
public class OIDCAuthenticationResponseConsentContext extends org.opensaml.messaging.context.BaseContextSubcontext carrying user consent information in a form suitable for OIDC processing. The information is carried in tokens (code, refresh token, access token) to back channel endpoints. This context appears as a subcontext of theOIDCAuthenticationResponseContext.
-
-
Field Summary
Fields Modifier and Type Field Description private net.minidev.json.JSONArrayconsentableAttributesAttributes requiring consent.private net.minidev.json.JSONArrayconsentedAttributesAttributes having consent.
-
Constructor Summary
Constructors Constructor Description OIDCAuthenticationResponseConsentContext()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.minidev.json.JSONArraygetConsentableAttributes()Get consentable attributes.net.minidev.json.JSONArraygetConsentedAttributes()Get consented attributes.-
Methods inherited from class org.opensaml.messaging.context.BaseContext
addSubcontext, addSubcontext, clearSubcontexts, containsSubcontext, createSubcontext, getParent, getSubcontext, getSubcontext, getSubcontext, getSubcontext, iterator, removeSubcontext, removeSubcontext, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
getConsentedAttributes
@Nonnull public net.minidev.json.JSONArray getConsentedAttributes()
Get consented attributes.- Returns:
- consented attributes.
-
getConsentableAttributes
@Nonnull public net.minidev.json.JSONArray getConsentableAttributes()
Get consentable attributes.- Returns:
- consentable attributes.
-
-