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 theAuthenticationResponse.- Since:
- 2.2.0
-
-
Field Summary
Fields Modifier and Type Field Description private Function<ProfileRequestContext,com.nimbusds.openid.connect.sdk.AuthenticationResponse>responseLookupStrategyLookup strategy to locate the authentication response.
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractAuthenticationResponseAuditExtractor(Function<ProfileRequestContext,com.nimbusds.openid.connect.sdk.AuthenticationResponse> strategy)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Function<ProfileRequestContext,com.nimbusds.openid.connect.sdk.AuthenticationResponse>getResponseLookupStrategy()Get the response lookup strategy.
-
-
-
Field Detail
-
responseLookupStrategy
@Nonnull private final Function<ProfileRequestContext,com.nimbusds.openid.connect.sdk.AuthenticationResponse> responseLookupStrategy
Lookup strategy to locate the authentication response.
-
-
Constructor Detail
-
AbstractAuthenticationResponseAuditExtractor
protected AbstractAuthenticationResponseAuditExtractor(@Nonnull Function<ProfileRequestContext,com.nimbusds.openid.connect.sdk.AuthenticationResponse> strategy)Constructor.- Parameters:
strategy- lookup strategy for locating the authentication response
-
-
Method Detail
-
getResponseLookupStrategy
protected Function<ProfileRequestContext,com.nimbusds.openid.connect.sdk.AuthenticationResponse> getResponseLookupStrategy()
Get the response lookup strategy.- Returns:
- the request lookup strategy
-
-