mulesoft-labs / raml-java-client-generator

Raml Java Client Generator
Apache License 2.0
34 stars 34 forks source link

NullPointerException while trying to use application/xml as a body for PUT api #32

Open manoj-saragonda opened 6 years ago

manoj-saragonda commented 6 years ago

Template RAML where the issue is seen,

/myapi: description: "Some description" put: description: "some description." queryParameters: someName: description: "Some name" type: "string" required: true example: "some example" body: application/xml: type: MyAPI responses: 200: body: type: "string" 500: body: type: Error