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