I'm having problem with wsimport
. In one of my wsdl which has to be wsimport
ed I have a complexType with name "objectFactory"
. Is there any way to tell command wsimport
to create while importing different class for maintaining JAXB connections such is ObjectFactory.java
. In other words can I tell wsimport
instead of creating ObjectFactory.java
some custom class like MyCustomFactory.java
?
Is it possible to customize mapping in such a way that complexType name="objectFactory"
would map to object with different name like MyObjectFactory.java
?
Thx