Package org.springframework.ws.server
Interface SmartEndpointInterceptor
- All Superinterfaces:
EndpointInterceptor
- All Known Subinterfaces:
SmartSoapEndpointInterceptor
- All Known Implementing Classes:
DelegatingSmartEndpointInterceptor
,DelegatingSmartSoapEndpointInterceptor
,PayloadRootSmartSoapEndpointInterceptor
,SoapActionSmartEndpointInterceptor
Extension of the
EndpointInterceptor
interface that adds a way to decide whether the interceptor should
intercept a given message context.- Since:
- 2.0
- Author:
- Arjen Poutsma
-
Method Summary
Modifier and TypeMethodDescriptionboolean
shouldIntercept
(MessageContext messageContext, Object endpoint) Indicates whether this interceptor should intercept the given message context.Methods inherited from interface org.springframework.ws.server.EndpointInterceptor
afterCompletion, handleFault, handleRequest, handleResponse
-
Method Details
-
shouldIntercept
Indicates whether this interceptor should intercept the given message context.- Parameters:
messageContext
- contains the incoming request messageendpoint
- chosen endpoint to invoke- Returns:
true
to indicate that this interceptor applies;false
otherwise
-