mulesoft-labs / raml-jaxrs-codegen

Tools to enable RAML-first development in JAX-RS projects
Other
40 stars 44 forks source link

Generated resource method names can contain invalid characters #31

Open amr opened 9 years ago

amr commented 9 years ago

Hi,

My RAML spec contains a resource which has a resource that looks like this:

/upload
  put:
    body:
      application/x-java-keystore:
    responses:
      200:
        description: OK

The generated resource then contains a method: x-java-keystoreOK(StreamingOutput entity) which gives a compile error.

ddossot commented 9 years ago

This has been fixed by https://github.com/mulesoft/raml-jaxrs-codegen/pull/32 and https://github.com/mulesoft/raml-jaxrs-codegen/pull/34