Class DefaultLocalErrorPredicate
java.lang.Object
org.opensaml.saml.common.profile.logic.DefaultLocalErrorPredicate
- All Implemented Interfaces:
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
FieldsModifier and TypeFieldDescriptionStrategy function for access toSAMLBindingContextto check.Strategy function for access toSAMLEndpointContextto check.private Function<ProfileRequestContext,EventContext> Strategy function for access toEventContextto check.Error events to handle locally, even if possible to do so with a response.private final org.slf4j.LoggerClass logger. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidSet lookup strategy forSAMLBindingContextto check.voidSet lookup strategy forSAMLEndpointContextto check.voidSet lookup strategy forEventContextto check.voidsetLocalEvents(Collection<String> events) Set the events to handle locally.booleantest(ProfileRequestContext input)
-
Field Details
-
log
@Nonnull private final org.slf4j.Logger logClass logger. -
bindingContextLookupStrategy
Strategy function for access toSAMLBindingContextto check. -
endpointContextLookupStrategy
Strategy function for access toSAMLEndpointContextto check. -
eventContextLookupStrategy
Strategy function for access toEventContextto check. -
localEvents
Error events to handle locally, even if possible to do so with a response.
-
-
Constructor Details
-
DefaultLocalErrorPredicate
public DefaultLocalErrorPredicate()Constructor.
-
-
Method Details
-
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
Set the events to handle locally.- Parameters:
events- locally handled events
-
test
- Specified by:
testin interfacePredicate<ProfileRequestContext>
-