Represents additional data to be added to EPRs
created from
StatefulWebServiceManager (for advanced users).
Occasionally it is convenient to be able to control the data to be
present on
EndpointReference s created by
StatefulWebServiceManager .
You can do so by using this class like this:
statefulWebServiceManager.export(
W3CEndpointReference .class,myObject,
new EPRRecipe().addReferenceParameter(
Headers .create(...))
.addReferenceParameter(
Headers .create(...)));
The methods on this class follows
the fluent interface design to allow construction without using a variable.
See
WS-Addressing EPR information model for more details.
author: Kohsuke Kawaguchi since: 2.1.1 See Also: StatefulWebServiceManager See Also: Headers |