Class ValidateActionHandler
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- org.opensaml.messaging.handler.AbstractMessageHandler
-
- org.opensaml.soap.wsaddressing.messaging.impl.ValidateActionHandler
-
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,MessageHandler
public class ValidateActionHandler extends AbstractMessageHandler
Handler implementation that checks a wsa:Action header against an expected value.If the header is present, the value is first checked against the value obtained from subcontext data
WSAddressingContext.getActionURI(). If that was not supplied, then the locally-configured value fromgetExpectedActionURI()is used. If neither expected value is available, the check is skipped.
-
-
Field Summary
Fields Modifier and Type Field Description private StringexpectedActionURIThe expected Action URI value.private org.slf4j.LoggerlogLogger.
-
Constructor Summary
Constructors Constructor Description ValidateActionHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoInvoke(MessageContext messageContext)protected booleandoPreInvoke(MessageContext messageContext)protected ActiongetAction(MessageContext messageContext)Get message Action header.StringgetExpectedActionURI()Get the expected Action URI.voidsetExpectedActionURI(String uri)Set the expected Action URI value.-
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
-
-
-
-
Field Detail
-
log
private org.slf4j.Logger log
Logger.
-
expectedActionURI
private String expectedActionURI
The expected Action URI value.
-
-
Method Detail
-
getExpectedActionURI
@Nullable public String getExpectedActionURI()
Get the expected Action URI.- Returns:
- the expected URI, or null
-
setExpectedActionURI
public void setExpectedActionURI(@Nullable String uri)Set the expected Action URI value.- Parameters:
uri- the new URI value
-
doPreInvoke
protected boolean doPreInvoke(@Nonnull MessageContext messageContext) throws MessageHandlerException- Overrides:
doPreInvokein classAbstractMessageHandler- Throws:
MessageHandlerException
-
doInvoke
protected void doInvoke(MessageContext messageContext) throws MessageHandlerException
- Specified by:
doInvokein classAbstractMessageHandler- Throws:
MessageHandlerException
-
getAction
protected Action getAction(@Nonnull MessageContext messageContext)
Get message Action header.- Parameters:
messageContext- the current message context- Returns:
- the message Action header
-
-