Spring Web Services Framework

org.springframework.ws.server
Class EndpointInvocationChain

java.lang.Object
  extended by 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:
EndpointInterceptor

Constructor Summary
EndpointInvocationChain(Object endpoint)
          Create new EndpointInvocationChain.
EndpointInvocationChain(Object endpoint, EndpointInterceptor[] interceptors)
          Create new EndpointInvocationChain.
 
Method Summary
 Object getEndpoint()
          Returns the endpoint object to invoke.
 EndpointInterceptor[] getInterceptors()
          Returns the array of interceptors to apply before the handler executes.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

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 Detail

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

Spring Web Services Framework

Copyright © 2005-2013 The Spring Web Services Framework. All Rights Reserved.