Question

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.

Was it helpful?

Solution

Ok, this seemed to solve it:

Instead of

<xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" />

I used

<xs:complexType name="Item">...</xs:complexType>
<xs:element name="ItemList" type="Item" minOccurs="0" maxOccurs="unbounded" />

which resulted in the code:

List<Item> itemList;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top