| java.lang.Object org.springframework.ws.server.EndpointInvocationChain org.springframework.ws.soap.server.SoapEndpointInvocationChain
Method Summary | |
public String[] | getActorsOrRoles() Gets the actors (SOAP 1.1) or roles (SOAP 1.2) associated with an invocation of this chain and its contained
interceptors and endpoint. | public boolean | isUltimateReceiver() Indicates whether this chain fulfills the SOAP 1.2 Ultimate Receiver role. |
SoapEndpointInvocationChain | public SoapEndpointInvocationChain(Object endpoint)(Code) | | Create new SoapEndpointInvocationChain .
Parameters: endpoint - the endpoint object to invoke |
SoapEndpointInvocationChain | public SoapEndpointInvocationChain(Object endpoint, EndpointInterceptor[] interceptors)(Code) | | Create new SoapEndpointInvocationChain .
Parameters: endpoint - the endpoint object to invoke Parameters: interceptors - the array of interceptors to apply |
SoapEndpointInvocationChain | public SoapEndpointInvocationChain(Object endpoint, EndpointInterceptor[] interceptors, String[] actorsOrRoles, boolean isUltimateReceiver)(Code) | | Create new EndpointInvocationChain .
Parameters: endpoint - the endpoint object to invoke Parameters: interceptors - the array of interceptors to apply Parameters: actorsOrRoles - the array of actorsOrRoles to set Parameters: isUltimateReceiver - whether this chain fullfils the SOAP 1.2 Ultimate receiver role |
getActorsOrRoles | public String[] getActorsOrRoles()(Code) | | Gets the actors (SOAP 1.1) or roles (SOAP 1.2) associated with an invocation of this chain and its contained
interceptors and endpoint.
a string array of URIs for SOAP actors/roles |
isUltimateReceiver | public boolean isUltimateReceiver()(Code) | | Indicates whether this chain fulfills the SOAP 1.2 Ultimate Receiver role. Default is true .
|
|
|