Class AbstractAuthenticationRequestAuditExtractor<T>
java.lang.Object
net.shibboleth.oidc.profile.audit.impl.AbstractAuthenticationRequestAuditExtractor<T>
- Type Parameters:
T- the extracted type
- All Implemented Interfaces:
Function<ProfileRequestContext,T>
- Direct Known Subclasses:
AuthenticationContextClassReferencesAuditExtractor,AuthorizationEndpointAuditExtractor,NonceAuditExtractor,RedirectURIAuditExtractor,ResponseModeAuditExtractor,ResponseTypeAuditExtractor,ScopeAuditExtractor
public abstract class AbstractAuthenticationRequestAuditExtractor<T>
extends Object
implements Function<ProfileRequestContext,T>
A base class for audit extractors that lookup the
OIDCAuthenticationRequest.- Since:
- 2.2.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Function<ProfileRequestContext,OIDCAuthenticationRequest> Lookup strategy to locate the authentication request. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractAuthenticationRequestAuditExtractor(Function<ProfileRequestContext, OIDCAuthenticationRequest> strategy) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionGet the request lookup strategy.
-
Field Details
-
requestLookupStrategy
@Nonnull private final Function<ProfileRequestContext,OIDCAuthenticationRequest> requestLookupStrategyLookup strategy to locate the authentication request.
-
-
Constructor Details
-
AbstractAuthenticationRequestAuditExtractor
protected AbstractAuthenticationRequestAuditExtractor(@Nonnull Function<ProfileRequestContext, OIDCAuthenticationRequest> strategy) Constructor.- Parameters:
strategy- lookup strategy for locating the authentication request
-
-
Method Details
-
getRequestLookupStrategy
Get the request lookup strategy.- Returns:
- the request lookup strategy
-