Interface ContentIdChildResource


@Path("/content/{id}/child") public interface ContentIdChildResource
  • Method Details

    • children

      @GET @Produces("application/json") javax.ws.rs.core.Response children(@PathParam("id") String id, @QueryParam("expand") String expand, @QueryParam("parentVersion") @DefaultValue("0") Integer parentVersion)
    • childrenOfType

      @GET @Produces("application/json") @Path("/{type}") javax.ws.rs.core.Response childrenOfType(@PathParam("id") String id, @PathParam("type") String type, @QueryParam("expand") String expand, @QueryParam("parentVersion") @DefaultValue("0") Integer parentVersion, @QueryParam("start") Integer start, @QueryParam("limit") @DefaultValue("25") Integer limit)
    • commentsOfContent

      @GET @Produces("application/json") @Path("/comment") javax.ws.rs.core.Response commentsOfContent(@PathParam("id") String id, @QueryParam("expand") String expand, @QueryParam("parentVersion") @DefaultValue("0") Integer parentVersion, @QueryParam("start") Integer start, @QueryParam("limit") @DefaultValue("25") Integer limit, @QueryParam("location") String location, @QueryParam("depth") String depth)