Class AbstractAuthenticationResponseAuditExtractor<T>
java.lang.Object
net.shibboleth.oidc.profile.audit.impl.AbstractAuthenticationResponseAuditExtractor<T>
- Type Parameters:
T- the extracted type
- All Implemented Interfaces:
Function<ProfileRequestContext,T>
- Direct Known Subclasses:
AuthenticationResponseStatusAuditExtractor
public abstract class AbstractAuthenticationResponseAuditExtractor<T>
extends Object
implements Function<ProfileRequestContext,T>
A base class for audit extractors that lookup the
AuthenticationResponse.- Since:
- 2.2.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Function<ProfileRequestContext,AuthenticationResponse> Lookup strategy to locate the authentication response. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractAuthenticationResponseAuditExtractor(Function<ProfileRequestContext, AuthenticationResponse> strategy) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected Function<ProfileRequestContext,AuthenticationResponse> Get the response lookup strategy.
-
Field Details
-
responseLookupStrategy
@Nonnull private final Function<ProfileRequestContext,AuthenticationResponse> responseLookupStrategyLookup strategy to locate the authentication response.
-
-
Constructor Details
-
AbstractAuthenticationResponseAuditExtractor
protected AbstractAuthenticationResponseAuditExtractor(@Nonnull Function<ProfileRequestContext, AuthenticationResponse> strategy) Constructor.- Parameters:
strategy- lookup strategy for locating the authentication response
-
-
Method Details
-
getResponseLookupStrategy
Get the response lookup strategy.- Returns:
- the request lookup strategy
-