@GET
@Path("/id/{id}/")
public Response getItem(@PathParam("id") Long id) {
final MediaItem item = service.getItem(id);
final JsonObject json = item.toJson()
.add("_ref", uriInfo.getAbsolutePathBuilder().build().toString())
.build();
return Response.ok(json).build();
}