Class ItemViewpoint


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

    • ItemViewpoint

      public ItemViewpoint()
  • Method Details

    • getSchemas

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

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

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

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

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

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

      @GET @Produces("text/xml") @Path("{schema}/{viewName}/history/{event}") public javax.ws.rs.core.Response getOutcomeForEvent(@Context javax.ws.rs.core.HttpHeaders headers, @PathParam("uuid") String uuid, @PathParam("schema") String schema, @PathParam("viewName") String viewName, @PathParam("event") Integer eventId, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)
    • getOutcomeEvent

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