Class TokenRequestAuthorizationCodeLookupFunction
- java.lang.Object
-
- net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractTokenRequestLookupFunction<String>
-
- net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.TokenRequestAuthorizationCodeLookupFunction
-
- All Implemented Interfaces:
Function<ProfileRequestContext,String>,ContextDataLookupFunction<ProfileRequestContext,String>
public class TokenRequestAuthorizationCodeLookupFunction extends AbstractTokenRequestLookupFunction<String>
A function that returns raw authorization code value via a lookup function. This lookup locates authorization code from token claims set for token request handling. If token claims are not available, null is returned.- Since:
- 3.2.0
-
-
Constructor Summary
Constructors Constructor Description TokenRequestAuthorizationCodeLookupFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) StringdoLookup(com.nimbusds.oauth2.sdk.TokenRequest req)Implemented to perform the actual lookup.-
Methods inherited from class net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractTokenRequestLookupFunction
apply
-
-
-
-
Method Detail
-
doLookup
@Nullable String doLookup(@Nonnull com.nimbusds.oauth2.sdk.TokenRequest req)
Implemented to perform the actual lookup.- Specified by:
doLookupin classAbstractTokenRequestLookupFunction<String>- Parameters:
req- token request to perform the lookup from.- Returns:
- lookup value.
-
-