| Adapter that supports endpoint methods that use marshalling. Supports methods with the following signature:
void handleMyMessage(@XPathParam("/root/child/text")String param);
or
Source handleMyMessage(@XPathParam("/root/child/text")String param1, @XPathParam("/root/child/number")double
param2);
I.e. methods that return either void or a
Source , and have parameters annotated with
XPathParam that specify the XPath expression that should be bound to that parameter. The parameter can be of the
following types:
author: Arjen Poutsma since: 1.0.0 |