java2ws (CXF 2.2.5) gave me the below snippet... <xsd:complexType name="MyRequest"> <xsd:sequence> <xsd:element minOccurs="0" name="entries" nillable="true" type="tns:ArrayOfMyEntry"/> </xsd:sequence> </xsd:complexType>
Run codegen plugin gives me an ArrayOfMyEntry class. I'd rather prefer getting MyEntry[] or List<MyEntry> ... Is there a way to accomplish that? Thanks...
