Class ItemOutcomeAttachment


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

    • ItemOutcomeAttachment

      public ItemOutcomeAttachment()
  • 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)
    • queryBinaryData

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