JAX-RS menempatkan anotasi

import javax.ws.rs.PUT;
...
@PUT
@Path("{client-id}")
public Response updateClient(@PathParam("client-id") Integer clientId, Client client)
Cute Civet