Class AbstractAuthenticationRequestLookupFunction<T>
- java.lang.Object
-
- net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractAuthenticationRequestLookupFunction<T>
-
- Type Parameters:
T- type of lookup result to return.
- All Implemented Interfaces:
Function<ProfileRequestContext,T>,ContextDataLookupFunction<ProfileRequestContext,T>
- Direct Known Subclasses:
DefaultRequestCodeChallengeLookupFunction,DefaultRequestCodeChallengeMethodLookupFunction,DefaultRequestedAcrLookupFunction,DefaultRequestedClaimsLookupFunction,DefaultRequestedPromptLookupFunction,DefaultRequestedScopeLookupFunction,DefaultRequestLoginHintLookupFunction,DefaultRequestMaxAgeLookupFunction,DefaultRequestNonceLookupFunction,DefaultRequestRedirectURILookupFunction,DefaultRequestResponseModeLookupFunction,DefaultRequestResponseTypeLookupFunction,DefaultRequestStateLookupFunction
public abstract class AbstractAuthenticationRequestLookupFunction<T> extends Object implements ContextDataLookupFunction<ProfileRequestContext,T>
A Abstract function extended by lookups searching fields from authentication request.
-
-
Field Summary
Fields Modifier and Type Field Description private com.nimbusds.jwt.JWTrequestObjectRequest.
-
Constructor Summary
Constructors Constructor Description AbstractAuthenticationRequestLookupFunction()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Tapply(ProfileRequestContext input)protected abstract TdoLookup(com.nimbusds.openid.connect.sdk.AuthenticationRequest req)Implemented to perform the actual lookup.com.nimbusds.jwt.JWTgetRequestObject()Gets the request object.
-
-
-
Method Detail
-
doLookup
@Nullable protected abstract T doLookup(@Nonnull com.nimbusds.openid.connect.sdk.AuthenticationRequest req)
Implemented to perform the actual lookup.- Parameters:
req- authentication request to perform the lookup from.- Returns:
- lookup value.
-
apply
@Nullable public T apply(@Nullable ProfileRequestContext input)
- Specified by:
applyin interfaceFunction<ProfileRequestContext,T>
-
getRequestObject
@Nullable public com.nimbusds.jwt.JWT getRequestObject()
Gets the request object.- Returns:
- the request object.
-
-