Can I use @QueryParam
when defining a DELETE operation? If yes, when I need to test it using jersey client, how the java code will look like? I tried something like
String result = client.target(url)
.queryParam("id",3)
.request(MediaType.APPLICATION_XML)
.delete(String.class);
But it was not working.