Jersey WADL: How do you rename generated XSDs
java, jersey, wadl, xsd
Solution
The source code has hard-coded `counter++` thing in a very private method, so you cannot change it easliy. But as I see, you could create your own wadl generator implemenation and configure with it `org.glassfish.jersey.server.ServerProperties#WADL_GENERATOR_CONFIG` property, then you could do custom naming code.
Problem
The web service I am working on has the generated WADL that Jersey creates. What I want to do is rename xsd0.xsd to Result.xsd or something like that. When it regenerates the WADL every time, it will be Result.xsd. Is this possible with Jersey?