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,ForceAuthnAuditExtractor,NonceAuditExtractor,RedirectURIAuditExtractor,ResponseModeAuditExtractor,ResponseTypeAuditExtractor,ScopeAuditExtractor
public abstract class AbstractAuthenticationRequestAuditExtractor<T> extends Object implements Function<ProfileRequestContext,T>
A base class for audit extractors that lookup theOIDCAuthenticationRequest.- Since:
- 2.2.0
-
-
Field Summary
Fields Modifier and Type Field Description private Function<ProfileRequestContext,OIDCAuthenticationRequest>requestLookupStrategyLookup strategy to locate the authentication request.
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractAuthenticationRequestAuditExtractor(Function<ProfileRequestContext,OIDCAuthenticationRequest> strategy)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Function<ProfileRequestContext,OIDCAuthenticationRequest>getRequestLookupStrategy()Get the request lookup strategy.
-
-
-
Field Detail
-
requestLookupStrategy
@Nonnull private final Function<ProfileRequestContext,OIDCAuthenticationRequest> requestLookupStrategy
Lookup strategy to locate the authentication request.
-
-
Constructor Detail
-
AbstractAuthenticationRequestAuditExtractor
protected AbstractAuthenticationRequestAuditExtractor(@Nonnull Function<ProfileRequestContext,OIDCAuthenticationRequest> strategy)Constructor.- Parameters:
strategy- lookup strategy for locating the authentication request
-
-
Method Detail
-
getRequestLookupStrategy
protected Function<ProfileRequestContext,OIDCAuthenticationRequest> getRequestLookupStrategy()
Get the request lookup strategy.- Returns:
- the request lookup strategy
-
-