Class ItemHistory


@Path("/item/{uuid}/history") public class ItemHistory extends ItemUtils
  • Constructor Details

    • ItemHistory

      public ItemHistory()
  • Method Details

    • listEvents

      @GET @Produces("application/json") public javax.ws.rs.core.Response listEvents(@PathParam("uuid") String uuid, @QueryParam("start") Integer start, @QueryParam("batch") Integer batchSize, @QueryParam("descending") Boolean descending, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)
    • getEvent

      @GET @Path("{eventId}") @Produces("application/json") public javax.ws.rs.core.Response getEvent(@PathParam("uuid") String uuid, @PathParam("eventId") String eventId, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)
    • getEventOutcome

      @GET @Path("{eventId}/data") @Produces({"text/xml","application/xml","application/json"}) public javax.ws.rs.core.Response getEventOutcome(@Context javax.ws.rs.core.HttpHeaders headers, @PathParam("uuid") String uuid, @PathParam("eventId") String eventId, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)