Class AddActionHandler
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- org.opensaml.messaging.handler.AbstractMessageHandler
-
- org.opensaml.soap.messaging.AbstractHeaderGeneratingMessageHandler
-
- org.opensaml.soap.wsaddressing.messaging.impl.AddActionHandler
-
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,MessageHandler
public class AddActionHandler extends AbstractHeaderGeneratingMessageHandler
Handler implementation that adds a wsa:Action header to the outbound SOAP envelope.If a
Faultis registered in the context, the value fromWSAddressingContext.getFaultActionURI()will be used, if present. If not, then the locally-configured value fromgetFaultActionURI()will be used. If neither is present, then a value will be selected based on theFault.getCode()viaselectActionURIForFault(Fault).The value from
WSAddressingContext.getActionURI()will be used, if present. If not, then the locally-configured value fromgetActionURI()will be used. If neither is present, no header will be added.
-
-
Constructor Summary
Constructors Constructor Description AddActionHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoInvoke(MessageContext messageContext)Performs the handler logic.protected booleandoPreInvoke(MessageContext messageContext)Called prior to execution, handlers may override this method to perform pre-processing for a request.StringgetActionURI()Get the Action URI.StringgetFaultActionURI()Get the Fault Action URI.protected StringselectActionURIForFault(Fault fault)Select the Action URI value to return for the givenFault.voidsetActionURI(String uri)Set the expected Action URI value.voidsetFaultActionURI(String uri)Set the Fault Action URI value.-
Methods inherited from class org.opensaml.soap.messaging.AbstractHeaderGeneratingMessageHandler
decorateGeneratedHeader, getEffectiveTargetNode, isEffectiveMustUnderstand, setMustUnderstand, setMustUnderstandStrategy, setTargetNode, setTargetNodeStrategy
-
Methods inherited from class org.opensaml.messaging.handler.AbstractMessageHandler
doPostInvoke, doPostInvoke, getActivationCondition, getLogPrefix, invoke, setActivationCondition
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doDestroy, 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
-
-
-
-
Method Detail
-
getActionURI
@Nullable public String getActionURI()
Get the Action URI.- Returns:
- the URI, or null
-
setActionURI
public void setActionURI(@Nullable String uri)Set the expected Action URI value.- Parameters:
uri- the new URI value
-
getFaultActionURI
@Nullable public String getFaultActionURI()
Get the Fault Action URI.- Returns:
- the URI, or null
-
setFaultActionURI
public void setFaultActionURI(@Nullable String uri)Set the Fault Action URI value.- Parameters:
uri- the new URI value
-
doPreInvoke
protected boolean doPreInvoke(@Nonnull MessageContext messageContext) throws MessageHandlerExceptionCalled prior to execution, handlers may override this method to perform pre-processing for a request.The default impl applies the
Predicateset via theAbstractMessageHandler.setActivationCondition(Predicate).If false is returned, execution will not proceed.
Subclasses which override this method should generally invoke the super version of this method first, so that the activation condition will be applied up front, and immediately return false if the super version returns false. This avoids unnecessary execution of the remaining pre-invocation code if the handler ultimately will not execute.
- Overrides:
doPreInvokein classAbstractHeaderGeneratingMessageHandler- Parameters:
messageContext- the message context on which to invoke the handler- Returns:
- true iff execution should proceed
- Throws:
MessageHandlerException- if there is a problem executing the handler pre-routine
-
selectActionURIForFault
@Nonnull protected String selectActionURIForFault(@Nonnull Fault fault)
Select the Action URI value to return for the givenFault.- Parameters:
fault- the fault- Returns:
- the selected Action URI
-
doInvoke
protected void doInvoke(@Nonnull MessageContext messageContext) throws MessageHandlerExceptionPerforms the handler logic.- Specified by:
doInvokein classAbstractMessageHandler- Parameters:
messageContext- the message context on which to invoke the handler- Throws:
MessageHandlerException- if there is an error invoking the handler on the message context
-
-