Class ItemProperty


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

    • ItemProperty

      public ItemProperty()
  • Method Details

    • listProperties

      @GET @Produces("application/json") public javax.ws.rs.core.Response listProperties(@PathParam("uuid") String uuid, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie)
    • getProperty

      @GET @Path("{name}") @Produces("text/plain") public String getProperty(@PathParam("uuid") String uuid, @PathParam("name") String name, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie)
    • getPropertyDetails

      @GET @Path("{name}/details") @Produces("application/json") public javax.ws.rs.core.Response getPropertyDetails(@PathParam("uuid") String uuid, @PathParam("name") String name, @CookieParam("cauth") javax.ws.rs.core.Cookie authCookie)