Details
Description
The data types in my xsd use mixed case names - e.g. "userDefaults"
When I reference these in my reponse's representation elements, the wadl2java tool is unable to match them to the types processed by the xsd parser.
E.g.
<response status="200">
<representation mediaType="application/xml" element="fmc:userDefaults" />
</response>
There is a line of code in the org.apache.cxf.jaxrs.ext.codegen.SourceGenerator.matchClassName method that checks the lower-cased version of the generated class name matches the local name of the type from the xsd. This will only ever work ig the local name is completely lowercased OR the method changes to match the 2 strings lower cased.