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:
DefaultRequestedAcrLookupFunction, DefaultRequestedClaimsLookupFunction, DefaultRequestLoginHintLookupFunction, DefaultRequestMaxAgeLookupFunction, DefaultRequestNonceLookupFunction

@Deprecated(since="4.2.0", forRemoval=true) public abstract class AbstractAuthenticationRequestLookupFunction<T> extends AbstractAuthorizationRequestLookupFunction<T> implements ContextDataLookupFunction<ProfileRequestContext,T>
Deprecated, for removal: This API element is subject to removal in a future version.
A Abstract function extended by lookups searching fields from authentication request.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Constructor.
  • Method Summary

    Modifier and Type
    Method
    Description
    protected T
    doLookup(com.nimbusds.oauth2.sdk.AuthorizationRequest req)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Implemented to perform the actual lookup.
    protected abstract T
    doLookup(com.nimbusds.openid.connect.sdk.AuthenticationRequest req)
    Deprecated, for removal: This API element is subject to removal in a future version.
    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

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface java.util.function.Function

    andThen, apply, compose
  • Constructor Details

    • AbstractAuthenticationRequestLookupFunction

      public AbstractAuthenticationRequestLookupFunction()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Constructor.
  • Method Details

    • doLookup

      @Nullable protected T doLookup(@Nonnull com.nimbusds.oauth2.sdk.AuthorizationRequest req)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Implemented to perform the actual lookup.
      Specified by:
      doLookup in class AbstractAuthorizationRequestLookupFunction<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)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Implemented to perform the actual lookup from OIDC authentication request.
      Parameters:
      req - authentication request to perform the lookup from.
      Returns:
      lookup value.