Package org.opensaml.profile.action
Class AbstractHandlerDelegatingProfileAction<DelegateType extends MessageHandler>
java.lang.Object
net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
org.opensaml.profile.action.AbstractProfileAction
org.opensaml.profile.action.AbstractConditionalProfileAction
org.opensaml.profile.action.AbstractHandlerDelegatingProfileAction<DelegateType>
- Type Parameters:
DelegateType
- type of MessageHandler to which to delegate.
- All Implemented Interfaces:
Component
,DestructableComponent
,InitializableComponent
,ProfileAction
- Direct Known Subclasses:
PopulateSignatureSigningParameters
,PopulateSignatureValidationParameters
public abstract class AbstractHandlerDelegatingProfileAction<DelegateType extends MessageHandler>
extends AbstractConditionalProfileAction
Base class for a profile action which just delegates to an instance of
MessageHandler
.-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate DelegateType
The message handler delegate.private String
An event to signal in the event of a handler exception.Lookup function for the message context on which to operate.private static final ParentProfileRequestContextLookup<MessageContext>
Lookup function for parent ProfileRequestContext. -
Constructor Summary
ConstructorsConstructorDescriptionAbstractHandlerDelegatingProfileAction
(DelegateType delegateInstance, ContextDataLookupFunction<ProfileRequestContext, MessageContext> lookup) Constructor.AbstractHandlerDelegatingProfileAction
(Class<DelegateType> delegateClass, ContextDataLookupFunction<ProfileRequestContext, MessageContext> lookup) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected <T> Function<MessageContext,
T> adapt
(Function<ProfileRequestContext, T> function) Adapt aProfileRequestContext
function to aMessageContext
function via composing with a lookup function.protected Predicate<MessageContext>
adapt
(Predicate<ProfileRequestContext> predicate) Adapt aProfileRequestContext
predicate into aMessageContext
predicate via composing with a lookup function.protected void
protected void
doExecute
(ProfileRequestContext profileRequestContext) Performs this action.protected DelegateType
Get the delegate instance.void
setErrorEvent
(String event) Set the event to signal in the event of a handler exception.Methods inherited from class org.opensaml.profile.action.AbstractConditionalProfileAction
doPreExecute, getActivationCondition, setActivationCondition
Methods inherited from class org.opensaml.profile.action.AbstractProfileAction
doPostExecute, doPostExecute, execute, getHttpServletRequest, getHttpServletResponse, getLogPrefix, setHttpServletRequest, setHttpServletResponse
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doInitialize, initialize, isDestroyed, isInitialized
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.shibboleth.utilities.java.support.component.InitializableComponent
initialize, isInitialized
-
Field Details
-
PRC_LOOKUP
Lookup function for parent ProfileRequestContext. -
delegate
The message handler delegate. -
messageContextLookup
@Nonnull private ContextDataLookupFunction<ProfileRequestContext,MessageContext> messageContextLookupLookup function for the message context on which to operate. -
errorEvent
An event to signal in the event of a handler exception.
-
-
Constructor Details
-
Method Details
-
setErrorEvent
Set the event to signal in the event of a handler exception.- Parameters:
event
- event to signal
-
doDestroy
protected void doDestroy()- Overrides:
doDestroy
in classAbstractInitializableComponent
-
getDelegate
Get the delegate instance.- Returns:
- the delegate instance
-
adapt
@Nullable protected Predicate<MessageContext> adapt(@Nullable Predicate<ProfileRequestContext> predicate) Adapt aProfileRequestContext
predicate into aMessageContext
predicate via composing with a lookup function.- Parameters:
predicate
- the profile request context predicate- Returns:
- the message context predicate
-
adapt
@Nullable protected <T> Function<MessageContext,T> adapt(@Nullable Function<ProfileRequestContext, T> function) Adapt aProfileRequestContext
function to aMessageContext
function via composing with a lookup function.- Type Parameters:
T
- the output type of the functions- Parameters:
function
- the profile request context function- Returns:
- the message context function
-
doExecute
Performs this action. Actions must override this method to perform their work.- Overrides:
doExecute
in classAbstractProfileAction
- Parameters:
profileRequestContext
- the current IdP profile request context
-