Class DefaultLocalErrorPredicate
- java.lang.Object
-
- org.opensaml.saml.common.profile.logic.DefaultLocalErrorPredicate
-
- All Implemented Interfaces:
Predicate<ProfileRequestContext>,Predicate<ProfileRequestContext>
public class DefaultLocalErrorPredicate extends Object implements Predicate<ProfileRequestContext>
Predicate that decides whether to handle an error by returning a SAML response to a requester or fail locally.This is principally determined based on whether or not the necessary message context children are present so that a response can be delivered, but is also tunable based on the error event being handled.
-
-
Field Summary
Fields Modifier and Type Field Description private Function<ProfileRequestContext,SAMLBindingContext>bindingContextLookupStrategyStrategy function for access toSAMLBindingContextto check.private Function<ProfileRequestContext,SAMLEndpointContext>endpointContextLookupStrategyStrategy function for access toSAMLEndpointContextto check.private Function<ProfileRequestContext,EventContext>eventContextLookupStrategyStrategy function for access toEventContextto check.private Set<String>localEventsError events to handle locally, even if possible to do so with a response.private org.slf4j.LoggerlogClass logger.
-
Constructor Summary
Constructors Constructor Description DefaultLocalErrorPredicate()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetBindingContextLookupStrategy(Function<ProfileRequestContext,SAMLBindingContext> strategy)Set lookup strategy forSAMLBindingContextto check.voidsetEndpointContextLookupStrategy(Function<ProfileRequestContext,SAMLEndpointContext> strategy)Set lookup strategy forSAMLEndpointContextto check.voidsetEventContextLookupStrategy(Function<ProfileRequestContext,EventContext> strategy)Set lookup strategy forEventContextto check.voidsetLocalEvents(Collection<String> events)Set the events to handle locally.booleantest(ProfileRequestContext input)
-
-
-
Field Detail
-
log
@Nonnull private final org.slf4j.Logger log
Class logger.
-
bindingContextLookupStrategy
@Nonnull private Function<ProfileRequestContext,SAMLBindingContext> bindingContextLookupStrategy
Strategy function for access toSAMLBindingContextto check.
-
endpointContextLookupStrategy
@Nonnull private Function<ProfileRequestContext,SAMLEndpointContext> endpointContextLookupStrategy
Strategy function for access toSAMLEndpointContextto check.
-
eventContextLookupStrategy
@Nonnull private Function<ProfileRequestContext,EventContext> eventContextLookupStrategy
Strategy function for access toEventContextto check.
-
localEvents
@Nonnull @NonnullElements private Set<String> localEvents
Error events to handle locally, even if possible to do so with a response.
-
-
Method Detail
-
setBindingContextLookupStrategy
public void setBindingContextLookupStrategy(@Nonnull Function<ProfileRequestContext,SAMLBindingContext> strategy)Set lookup strategy forSAMLBindingContextto check.- Parameters:
strategy- lookup strategy
-
setEndpointContextLookupStrategy
public void setEndpointContextLookupStrategy(@Nonnull Function<ProfileRequestContext,SAMLEndpointContext> strategy)Set lookup strategy forSAMLEndpointContextto check.- Parameters:
strategy- lookup strategy
-
setEventContextLookupStrategy
public void setEventContextLookupStrategy(@Nonnull Function<ProfileRequestContext,EventContext> strategy)Set lookup strategy forEventContextto check.- Parameters:
strategy- lookup strategy
-
setLocalEvents
public void setLocalEvents(@Nullable Collection<String> events)Set the events to handle locally.- Parameters:
events- locally handled events
-
test
public boolean test(@Nullable ProfileRequestContext input)- Specified by:
testin interfacePredicate<ProfileRequestContext>
-
-