Interface ContentIdPropertyResource


@Path("/content/{id}/property") public interface ContentIdPropertyResource
  • Method Details

    • findAll

      @GET @Produces("application/json") javax.ws.rs.core.Response findAll(@PathParam("id") String id, @QueryParam("expand") String expand, @QueryParam("start") Integer start, @QueryParam("limit") @DefaultValue("10") Integer limit)
    • create

      @POST @Consumes("application/json") @Produces("application/json") javax.ws.rs.core.Response create(@PathParam("id") String id)
    • findByKey

      @GET @Produces("application/json") @Path("/{key}") javax.ws.rs.core.Response findByKey(@PathParam("id") String id, @PathParam("key") String key, @QueryParam("expand") String expand)
    • update

      @PUT @Consumes("application/json") @Produces("application/json") @Path("/{key}") javax.ws.rs.core.Response update(@PathParam("id") String id, @PathParam("key") String key)
    • delete

      @DELETE @Produces("application/json") @Path("/{key}") javax.ws.rs.core.Response delete(@PathParam("id") String id, @PathParam("key") String key)
    • create2

      @POST @Consumes("application/json") @Produces("application/json") @Path("/{key}") javax.ws.rs.core.Response create2(@PathParam("id") String id, @PathParam("key") String key)