Interface SpaceSpaceKeyPropertyResource


@Path("/space/{spaceKey}/property") public interface SpaceSpaceKeyPropertyResource
  • Method Details

    • get

      @GET @Produces("application/json") javax.ws.rs.core.Response get(@PathParam("spaceKey") String spaceKey, @QueryParam("expand") @DefaultValue("version") 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("spaceKey") String spaceKey)
    • get2

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

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

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

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