Details
Description
ClientProxyImpl expects that the order of Path parameters matches the order of the template variables, example,
@Path("{a}/{b}") @GET public Book getBook(@PathParam("a") String a, @PathParam("b") String b);
Having the different order, example
@Path("{a}/{b}") @GET public Book getBook(@PathParam("b") String b, @PathParam("a") String a);
breaks the URI generation...