I have a wsdl and I am generating the associated Java classes using wsimport (from the jdk).
The generated Java classes have their fields visibility set to protected.
How do you generate those Java classes with a visibility of private ?
I have seen this post but the solution is to write a plugin. Since I am also using an jaxb binding file to correct some few other things ,I m looking for a declarative way to switch from protected to private.
Thank you