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)protected booleandoPreInvoke(MessageContext messageContext)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 MessageHandlerException- Overrides:
doPreInvokein classAbstractHeaderGeneratingMessageHandler- Throws:
MessageHandlerException
-
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 MessageHandlerException- Specified by:
doInvokein classAbstractMessageHandler- Throws:
MessageHandlerException
-
-