Class AbstractTokenRequestLookupFunction<T>
java.lang.Object
net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractTokenRequestLookupFunction<T>
- Type Parameters:
T- type of lookup result to return.
- All Implemented Interfaces:
Function<ProfileRequestContext,,T> ContextDataLookupFunction<ProfileRequestContext,T>
- Direct Known Subclasses:
DefaultRequestCodeVerifierLookupFunction,TokenRequestAudienceLookupFunction,TokenRequestAuthorizationCodeLookupFunction,TokenRequestRedirectURILookupFunction,TokenRequestScopeLookupFunction
public abstract class AbstractTokenRequestLookupFunction<T>
extends Object
implements ContextDataLookupFunction<ProfileRequestContext,T>
A Abstract function extended by lookups searching fields from token request.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapply(ProfileRequestContext input) (package private) abstract TdoLookup(com.nimbusds.oauth2.sdk.TokenRequest req) Implemented to perform the actual lookup.
-
Constructor Details
-
AbstractTokenRequestLookupFunction
public AbstractTokenRequestLookupFunction()
-
-
Method Details
-
doLookup
Implemented to perform the actual lookup.- Parameters:
req- token request to perform the lookup from.- Returns:
- lookup value.
-
apply
- Specified by:
applyin interfaceFunction<ProfileRequestContext,T>
-