Package org.springframework.ws.server
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
- Author:
- Arjen Poutsma
- See Also:
-
Constructor Summary
ConstructorDescriptionEndpointInvocationChain
(Object endpoint) Create newEndpointInvocationChain
.EndpointInvocationChain
(Object endpoint, EndpointInterceptor[] interceptors) Create newEndpointInvocationChain
. -
Method Summary
Modifier and TypeMethodDescriptionReturns the endpoint object to invoke.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
Returns the endpoint object to invoke.- Returns:
- the endpoint object
-
getInterceptors
Returns the array of interceptors to apply before the handler executes.- Returns:
- the array of interceptors
-