Class ItemOutcome


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

    • ItemOutcome

      public ItemOutcome()
  • Method Details

    • getOutcomeSchemas

      @GET @Produces("application/json") public javax.ws.rs.core.Response getOutcomeSchemas(@PathParam("uuid") String uuid, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)
    • getOutcomeVersions

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

      @GET @Produces("application/json") @Path("{schema}/{version}") public javax.ws.rs.core.Response getOutcomeEvents(@PathParam("uuid") String uuid, @PathParam("schema") String schema, @PathParam("version") Integer version, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)
    • queryXMLData

      @GET @Produces({"text/plain","text/xml","application/xml"}) @Path("{schema}/{version}/{event}") public javax.ws.rs.core.Response queryXMLData(@PathParam("uuid") String uuid, @PathParam("schema") String schema, @PathParam("version") Integer version, @PathParam("event") Integer event, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)
    • queryJSONData

      @GET @Produces("application/json") @Path("{schema}/{version}/{event}") public javax.ws.rs.core.Response queryJSONData(@PathParam("uuid") String uuid, @PathParam("schema") String schema, @PathParam("version") Integer version, @PathParam("event") Integer event, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)