I have an element in XSD schema:
<xsd:any processContents="skip"/>
Is it possible to switch processContents
to strict
through XJB binding? Without modifying schema file. May be set it as global property. I want to get:
@XmlAnyElement(lax = true)
protected Object any;
instead of:
@XmlAnyElement
protected Element any;