| org.springframework.ws.server.EndpointMapping
All known Subclasses: org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping,
getEndpoint | EndpointInvocationChain getEndpoint(MessageContext messageContext) throws Exception(Code) | | Returns an endpoint and any interceptors for this message context. The choice may be made on message contents,
transport request url, a routing table, or any factor the implementing class chooses.
The returned EndpointExecutionChain contains an endpoint Object, rather than even a tag interface,
so that endpoints are not constrained in any way. For example, a EndpointAdapter could be written to
allow another framework's endpoint objects to be used.
Returns null if no match was found. This is by design. The MessageDispatcher will query
all registered EndpointMapping beans to find a match, and only decide there is an error if none can
find an endpoint.
a HandlerExecutionChain instance containing endpoint object and any interceptors, or null ifno mapping is found throws: Exception - if there is an internal error |
|
|