org.springframework.ws.server |
Contains classes for server-side Spring-WS support.
|
Java Source File Name | Type | Comment |
EndpointAdapter.java | Interface | Interface that must be implemented for each endpoint type to handle a message request. |
EndpointExceptionResolver.java | Interface | Defines the interface for objects than can resolve exceptions thrown during endpoint execution, resulting in SOAP
messages. |
EndpointInterceptor.java | Interface | Workflow interface that allows for customized endpoint invocation chains. |
EndpointInvocationChain.java | Class | Endpoint invocation chain, consisting of an endpoint object and any preprocessing interceptors. |
EndpointMapping.java | Interface | Defines a mapping between message requests and endpoint objects.
This class can be implemented by application developers, although this is not always necessary, as
PayloadRootQNameEndpointMapping and SoapActionEndpointMapping are included.
HandlerMapping implementations can support mapped interceptors but do not have to. |
MessageDispatcher.java | Class | Central dispatcher for use within Spring-WS, dispatching Web service messages to registered endpoints.
This dispatcher is quite similar to Spring MVCs
DispatcherServlet . |
MessageDispatcherTest.java | Class | |