Class DelegatingSmartSoapEndpointInterceptor
java.lang.Object
org.springframework.ws.server.endpoint.interceptor.DelegatingSmartEndpointInterceptor
org.springframework.ws.soap.server.endpoint.interceptor.DelegatingSmartSoapEndpointInterceptor
- All Implemented Interfaces:
EndpointInterceptor
,SmartEndpointInterceptor
,SmartSoapEndpointInterceptor
,SoapEndpointInterceptor
- Direct Known Subclasses:
PayloadRootSmartSoapEndpointInterceptor
,SoapActionSmartEndpointInterceptor
public class DelegatingSmartSoapEndpointInterceptor
extends DelegatingSmartEndpointInterceptor
implements SmartSoapEndpointInterceptor
Implementation of the
SmartSoapEndpointInterceptor
interface that delegates to a delegate
SoapEndpointInterceptor
.- Since:
- 2.0
- Author:
- Arjen Poutsma
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of theDelegatingSmartSoapEndpointInterceptor
with the given delegate. -
Method Summary
Modifier and TypeMethodDescriptionboolean
understands
(SoapHeaderElement header) Given aSoapHeaderElement
, return whether or not thisSoapEndpointInterceptor
understands it.Methods inherited from class org.springframework.ws.server.endpoint.interceptor.DelegatingSmartEndpointInterceptor
afterCompletion, getDelegate, handleFault, handleRequest, handleResponse, shouldIntercept, shouldIntercept
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.ws.server.EndpointInterceptor
afterCompletion, handleFault, handleRequest, handleResponse
Methods inherited from interface org.springframework.ws.server.SmartEndpointInterceptor
shouldIntercept
-
Constructor Details
-
DelegatingSmartSoapEndpointInterceptor
Creates a new instance of theDelegatingSmartSoapEndpointInterceptor
with the given delegate.- Parameters:
delegate
- the endpoint interceptor to delegate to.
-
-
Method Details
-
understands
Description copied from interface:SoapEndpointInterceptor
Given aSoapHeaderElement
, return whether or not thisSoapEndpointInterceptor
understands it.- Specified by:
understands
in interfaceSoapEndpointInterceptor
- Parameters:
header
- the header- Returns:
true
if understood,false
otherwise
-