Class AbstractTokenClaimsLookupFunction<T>
java.lang.Object
net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractTokenClaimsLookupFunction<T>
- Type Parameters:
T- type of lookup result to return.
- All Implemented Interfaces:
Function<ProfileRequestContext,,T> ContextDataLookupFunction<ProfileRequestContext,T>
- Direct Known Subclasses:
TokenRequestAuthTimeLookupFunction,TokenRequestConsentedAttributesLookupFunction,TokenRequestDeliveryClaimsLookupFunction,TokenRequestIDTokenDeliveryClaimsLookupFunction,TokenRequestNonceLookupFunction,TokenRequestRequestedClaimsLookupFunction,TokenRequestSessionIdLookupFunction,TokenRequestSubjectLookupFunction,TokenRequestUserInfoDeliveryClaimsLookupFunction,TokenRequestValidRequestURIsLookupFunction
public abstract class AbstractTokenClaimsLookupFunction<T>
extends Object
implements ContextDataLookupFunction<ProfileRequestContext,T>
A Abstract function extended by lookups searching fields from tokens (Authorization Code, Access Token).
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapply(ProfileRequestContext input) (package private) abstract TdoLookup(TokenClaimsSet tokenClaims) Implemented to perform the actual lookup.
-
Constructor Details
-
AbstractTokenClaimsLookupFunction
public AbstractTokenClaimsLookupFunction()
-
-
Method Details
-
doLookup
Implemented to perform the actual lookup.- Parameters:
tokenClaims- token claims set to perform the lookup from.- Returns:
- lookup value.
-
apply
- Specified by:
applyin interfaceFunction<ProfileRequestContext,T>
-