Class EndpointInvocationChain

java.lang.Object
org.springframework.ws.server.EndpointInvocationChain
Direct Known Subclasses:
SoapEndpointInvocationChain

public class EndpointInvocationChain extends Object
Endpoint invocation chain, consisting of an endpoint object and any preprocessing interceptors.
Since:
1.0.0
Author:
Arjen Poutsma
See Also:
  • Constructor Details

    • EndpointInvocationChain

      public EndpointInvocationChain(Object endpoint)
      Create new EndpointInvocationChain.
      Parameters:
      endpoint - the endpoint object to invoke
    • EndpointInvocationChain

      public EndpointInvocationChain(Object endpoint, EndpointInterceptor[] interceptors)
      Create new EndpointInvocationChain.
      Parameters:
      endpoint - the endpoint object to invoke
      interceptors - the array of interceptors to apply
  • Method Details

    • getEndpoint

      public Object getEndpoint()
      Returns the endpoint object to invoke.
      Returns:
      the endpoint object
    • getInterceptors

      public EndpointInterceptor[] getInterceptors()
      Returns the array of interceptors to apply before the handler executes.
      Returns:
      the array of interceptors