Specifies settings for methods in participant business processes involved in exchanging business messages via ebXML.
@jpd:ebxml-method
envelope="{env}"
Represents the message envelope in an incoming ebXML business message. You can rename the default value (env) as long as it matches the name of the parameter specified in the method.
Use this annotation with the request method in a client request nodes to assign the ebXML envelope of an incoming message.
The following example code shows an implementation of request in a participant business process that retrieves the ebXML envelope from a business message.
/** *@jpd:ebxml-method envelope="{env}" */ public void request(XmlObject payload, XmlObject env) { }