Simple subclass of
AbstractMethodEndpointMapping that maps from the local name of the request payload to
methods.Endpoint beans are registered using the endpoints property; the endpoint methods that start with
methodPrefix and end with methodSuffix will be registered.
Endpoints typically have the following form:
public class MyEndpoint{
public Source handleMyMessage(Source source) {
...
}
}