Package org.codice.ddf.confluence.api
Interface ContentIdChildResource
@Path("/content/{id}/child")
public interface ContentIdChildResource
-
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.Responsejavax.ws.rs.core.ResponsechildrenOfType(String id, String type, String expand, Integer parentVersion, Integer start, Integer limit) javax.ws.rs.core.ResponsecommentsOfContent(String id, String expand, Integer parentVersion, Integer start, Integer limit, String location, String depth)
-
Method Details
-
children
-
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)
-