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

@Deprecated(since="4.2.0", forRemoval=true) public abstract class AbstractTokenRequestLookupFunction<T> extends Object 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 token request.
  • Constructor Summary

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

    Modifier and Type
    Method
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    (package private) abstract T
    doLookup(com.nimbusds.oauth2.sdk.TokenRequest req)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Implemented to perform the actual lookup.

    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, compose
  • Constructor Details

    • AbstractTokenRequestLookupFunction

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

    • doLookup

      abstract T doLookup(@Nonnull com.nimbusds.oauth2.sdk.TokenRequest req)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Implemented to perform the actual lookup.
      Parameters:
      req - token request to perform the lookup from.
      Returns:
      lookup value.
    • apply

      @Nullable public T apply(@Nullable ProfileRequestContext input)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Specified by:
      apply in interface Function<ProfileRequestContext,T>