I'm using Java2WSDL and WSDL2Java. WSDL2Java places the fully qualified class name in method parameters and return types. For example, if I have an Integer being passed to method myMethod which returns an Integer, WSDL2Java would gen:
public java.lang.Integer myMethod(java.lang.Integer in0) {...}
Is there a way to turn this off so that it only gens:
public Integer myMethod(Integer in0) {...} ???
My javadocs turn out not so user friendly with fully qualified class names.
Thanks.
