Class EndpointInvocationChain
java.lang.Object
org.springframework.ws.server.EndpointInvocationChain
- Direct Known Subclasses:
 SoapEndpointInvocationChain
Endpoint invocation chain, consisting of an endpoint object and any preprocessing
interceptors.
- Since:
 - 1.0.0
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionEndpointInvocationChain(Object endpoint) Create newEndpointInvocationChain.EndpointInvocationChain(Object endpoint, EndpointInterceptor @Nullable [] interceptors) Create newEndpointInvocationChain. - 
Method Summary
Modifier and TypeMethodDescriptionReturns the endpoint object to invoke.EndpointInterceptor @Nullable []Returns the array of interceptors to apply before the handler executes. 
- 
Constructor Details
- 
EndpointInvocationChain
Create newEndpointInvocationChain.- Parameters:
 endpoint- the endpoint object to invoke
 - 
EndpointInvocationChain
Create newEndpointInvocationChain.- Parameters:
 endpoint- the endpoint object to invokeinterceptors- the array of interceptors to apply
 
 - 
 - 
Method Details
- 
getEndpoint
 - 
getInterceptors
Returns the array of interceptors to apply before the handler executes.- Returns:
 - the array of interceptors
 
 
 -