242526272829303132
} @GET @Path("{id}") public Response fetchTask(@PathParam("id") Long id) { Task task = taskDao.get(id); return Response.ok(task).build(); }