Class QueryAccess


@Path("/query") public class QueryAccess extends ResourceAccess
  • Constructor Details

    • QueryAccess

      public QueryAccess()
  • Method Details

    • listAllQueries

      @GET @Produces("application/json") public javax.ws.rs.core.Response listAllQueries(@DefaultValue("0") @QueryParam("start") Integer start, @QueryParam("batch") Integer batchSize, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie, @Context javax.ws.rs.core.UriInfo uri)
    • listQueryVersions

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

      @GET @Path("{name}/{version}") @Produces({"text/xml","application/xml","application/json"}) public javax.ws.rs.core.Response getQuery(@Context javax.ws.rs.core.HttpHeaders headers, @PathParam("name") String name, @PathParam("version") Integer version, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie)