@Target(value=METHOD)
@Retention(value=SOURCE)
@Documented
public @interface WsdlBodyEnricher
The method marked as @WsdlBodyEnricher will receive a Document representing the soap message body (which is the application payload),
and must also return a the same object, with the modified body.
Signature has to be exactly the following:
public Document exampleBodyEnricher(ServiceDefinition serviceDefinition, String operationName, Document payload)