I\'m trying to figure out how @Consumes works here.
I have a simplified resource that looks like the below, and I only want this resource to consume \"application/vn
You should specify the type- for example:
ClientResponse res = service.path("accounts") .type("application/vnd.dsu.account+json") .post(ClientResponse.class,ent);