@Path(value="/content/{id}/descendant")
public interface ContentIdDescendantResource
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
descendants(String id,
String expand) |
javax.ws.rs.core.Response |
descendantsOfType(String id,
String type,
String expand,
Integer start,
Integer limit) |
@GET
@Produces(value="application/json")
javax.ws.rs.core.Response descendants(@PathParam(value="id")
String id,
@QueryParam(value="expand")
String expand)
@GET
@Produces(value="application/json")
@Path(value="/{type}")
javax.ws.rs.core.Response descendantsOfType(@PathParam(value="id")
String id,
@PathParam(value="type")
String type,
@QueryParam(value="expand")
String expand,
@QueryParam(value="start")
Integer start,
@QueryParam(value="limit") @DefaultValue(value="25")
Integer limit)
This work is licensed under a Creative Commons Attribution 4.0 International License.