Class OIDCClientRegistrationTokenClaimsContext
- java.lang.Object
-
- org.opensaml.messaging.context.BaseContext
-
- net.shibboleth.idp.plugin.oidc.op.messaging.context.OIDCClientRegistrationTokenClaimsContext
-
- All Implemented Interfaces:
Iterable<BaseContext>
public final class OIDCClientRegistrationTokenClaimsContext extends BaseContext
Subcontext carrying information on the claims included in the initial access token used for accessing the dynamic client registration endpoint. This context appears as a subcontext of the (inbound)MessageContext.- Since:
- 3.1.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opensaml.messaging.context.BaseContext
BaseContext.ContextSetNoRemoveIteratorDecorator
-
-
Field Summary
Fields Modifier and Type Field Description private RegistrationClaimsSetclaimsSetThe claims set in the initial access token.
-
Constructor Summary
Constructors Constructor Description OIDCClientRegistrationTokenClaimsContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RegistrationClaimsSetgetClaimsSet()Get the claims set in the initial access token.OIDCClientRegistrationTokenClaimsContextsetClaimsSet(RegistrationClaimsSet set)Set the claims set in the initial access token.-
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
-
-
-
-
Field Detail
-
claimsSet
@Nullable private RegistrationClaimsSet claimsSet
The claims set in the initial access token.
-
-
Method Detail
-
setClaimsSet
@Nonnull public OIDCClientRegistrationTokenClaimsContext setClaimsSet(@Nullable RegistrationClaimsSet set)
Set the claims set in the initial access token.- Parameters:
set- What to set- Returns:
- this context
-
getClaimsSet
@Nullable public RegistrationClaimsSet getClaimsSet()
Get the claims set in the initial access token.- Returns:
- The claims set in the initial access token.
-
-