I have a schema with something along the lines of
<xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" />
and it is referenced in my wsdl. When I use wsimport to create java code, the class gets a field called
List<Item> item;
Is there a way to get it to name the field something more standard like items
or itemList
?
I don't want to name the xs:element
Items because then I would get a class called Items
which is as bad.