Class AbstractAuthenticationRequestLookupFunction<T>
- java.lang.Object
-
- org.geant.idpextension.oidc.profile.context.navigate.AbstractAuthenticationRequestLookupFunction<T>
-
- Type Parameters:
T- type of lookup result to return.
- All Implemented Interfaces:
Function<org.opensaml.profile.context.ProfileRequestContext,T>,org.opensaml.messaging.context.navigate.ContextDataLookupFunction<org.opensaml.profile.context.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 org.opensaml.messaging.context.navigate.ContextDataLookupFunction<org.opensaml.profile.context.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(org.opensaml.profile.context.ProfileRequestContext input)(package private) 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 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 org.opensaml.profile.context.ProfileRequestContext input)
-
getRequestObject
@Nullable public com.nimbusds.jwt.JWT getRequestObject()
Gets the request object.- Returns:
- the request object.
-
-