Description
Given
@GET @Path("{a}") public Response get(@PathParam("a") String a) {} and @PUT @Path("{a}") public Response put(SomeContent content) {}
where both PUT and GET share the same path but PUT has no PathParam in the signature, WADL will have two resources, one per GET and one per PUT, with the PUT one having no template parameter.
It may be preferred that in the above case both methods share the same root resource - but note that in this case a reverse generation would produce a PUT method with a PathParam.