Interface ContentIdDescendantResource


@Path("/content/{id}/descendant") public interface ContentIdDescendantResource
  • Method Details

    • descendants

      @GET @Produces("application/json") javax.ws.rs.core.Response descendants(@PathParam("id") String id, @QueryParam("expand") String expand)
    • descendantsOfType

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