| Implementation of the
EndpointMapping interface that uses the
PayloadRoot annotation to map methods
to request payload root elements.
Endpoints typically have the following form:
@Endpoint
public class MyEndpoint{
@Payload(localPart = "Request",
namespace = "http://springframework.org/spring-ws")
public Source doSomethingWithRequest() {
...
}
}
author: Arjen Poutsma since: 1.0.0 |