Class AbstractAuthenticationRequestLookupFunction<T>
java.lang.Object
net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractAuthorizationRequestLookupFunction<T>
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:
AuthenticationRequestClaimsAuditExtractor,DefaultRequestedAcrLookupFunction,DefaultRequestedClaimsLookupFunction,DefaultRequestLoginHintLookupFunction,DefaultRequestMaxAgeLookupFunction,DefaultRequestNonceLookupFunction
public abstract class AbstractAuthenticationRequestLookupFunction<T>
extends AbstractAuthorizationRequestLookupFunction<T>
implements ContextDataLookupFunction<ProfileRequestContext,T>
A Abstract function extended by lookups searching fields from authentication request.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected TdoLookup(com.nimbusds.oauth2.sdk.AuthorizationRequest req) Implemented to perform the actual lookup.protected abstract TdoLookup(com.nimbusds.openid.connect.sdk.AuthenticationRequest req) Implemented to perform the actual lookup from OIDC authentication request.Methods inherited from class net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractAuthorizationRequestLookupFunction
apply, getRequestObject
-
Constructor Details
-
AbstractAuthenticationRequestLookupFunction
public AbstractAuthenticationRequestLookupFunction()Constructor.
-
-
Method Details
-
doLookup
Implemented to perform the actual lookup.- Specified by:
doLookupin classAbstractAuthorizationRequestLookupFunction<T>- Parameters:
req- auhtorization request to perform the lookup from.- Returns:
- lookup value.
-
doLookup
@Nullable protected abstract T doLookup(@Nonnull com.nimbusds.openid.connect.sdk.AuthenticationRequest req) Implemented to perform the actual lookup from OIDC authentication request.- Parameters:
req- authentication request to perform the lookup from.- Returns:
- lookup value.
-