Class AbstractAuthorizationRequestLookupFunction<T>
java.lang.Object
net.shibboleth.idp.plugin.oidc.op.profile.context.navigate.AbstractAuthorizationRequestLookupFunction<T>
- Type Parameters:
T- type of lookup result to return.
- All Implemented Interfaces:
Function<ProfileRequestContext,,T> ContextDataLookupFunction<ProfileRequestContext,T>
- Direct Known Subclasses:
AbstractAuthenticationRequestLookupFunction,DefaultRequestAudienceLookupFunction,DefaultRequestCodeChallengeLookupFunction,DefaultRequestCodeChallengeMethodLookupFunction,DefaultRequestedPromptLookupFunction,DefaultRequestedScopeLookupFunction,DefaultRequestRedirectURILookupFunction,DefaultRequestResponseModeLookupFunction,DefaultRequestResponseTypeLookupFunction,DefaultRequestStateLookupFunction,DefaultValidResponseTypesLookupFunction
@Deprecated(since="4.2.0",
forRemoval=true)
public abstract class AbstractAuthorizationRequestLookupFunction<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 authorization request.
- Since:
- 3.3.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Class<? extends com.nimbusds.oauth2.sdk.AuthorizationRequest>Deprecated, for removal: This API element is subject to removal in a future version.The request message class to verify that the actual request is an instance of.private com.nimbusds.jwt.JWTDeprecated, for removal: This API element is subject to removal in a future version.Request. -
Constructor Summary
ConstructorsModifierConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Constructor.protectedAbstractAuthorizationRequestLookupFunction(Class<? extends com.nimbusds.oauth2.sdk.AuthorizationRequest> clazz) Deprecated, for removal: This API element is subject to removal in a future version.Constructor. -
Method Summary
Modifier and TypeMethodDescriptionapply(ProfileRequestContext input) Deprecated, for removal: This API element is subject to removal in a future version.protected abstract TdoLookup(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.com.nimbusds.jwt.JWTDeprecated, for removal: This API element is subject to removal in a future version.Gets the request object.
-
Field Details
-
requestObject
@Nullable private com.nimbusds.jwt.JWT requestObjectDeprecated, for removal: This API element is subject to removal in a future version.Request. -
messageClass
Deprecated, for removal: This API element is subject to removal in a future version.The request message class to verify that the actual request is an instance of.
-
-
Constructor Details
-
AbstractAuthorizationRequestLookupFunction
public AbstractAuthorizationRequestLookupFunction()Deprecated, for removal: This API element is subject to removal in a future version.Constructor. -
AbstractAuthorizationRequestLookupFunction
protected AbstractAuthorizationRequestLookupFunction(@Nonnull Class<? extends com.nimbusds.oauth2.sdk.AuthorizationRequest> clazz) Deprecated, for removal: This API element is subject to removal in a future version.Constructor.- Parameters:
clazz- request message class to verify that the actual request is an instance of.
-
-
Method Details
-
doLookup
Deprecated, for removal: This API element is subject to removal in a future version.Implemented to perform the actual lookup.- Parameters:
req- authorization request to perform the lookup from.- Returns:
- lookup value.
-
apply
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
applyin interfaceFunction<ProfileRequestContext,T>
-
getRequestObject
@Nullable public com.nimbusds.jwt.JWT getRequestObject()Deprecated, for removal: This API element is subject to removal in a future version.Gets the request object.- Returns:
- the request object.
-