java.lang.Object
com.atlassian.confluence.plugins.restapi.resources.SpaceLabelResource
@Path("/space/{spaceKey}/labels")
@Consumes("application/json")
@Produces("application/json")
public final class SpaceLabelResource
extends Object
- Since:
- 8.9.0
-
Constructor Summary
Constructors
-
Method Summary
index(javax.ws.rs.core.UriInfo uriInfo,
String spaceKey,
int start,
int limit)
popular(javax.ws.rs.core.UriInfo uriInfo,
String spaceKey,
int start,
int limit)
recent(javax.ws.rs.core.UriInfo uriInfo,
String spaceKey,
int start,
int limit)
related(javax.ws.rs.core.UriInfo uriInfo,
String spaceKey,
String labelName,
int start,
int limit)
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Details
-
index
@GET
public RestList<Label> index(@Context
javax.ws.rs.core.UriInfo uriInfo,
@PathParam("spaceKey")
String spaceKey,
@QueryParam("start")
int start,
@QueryParam("limit") @DefaultValue("25")
int limit)
-
popular
@GET
@Path("/popular")
public RestList<Label> popular(@Context
javax.ws.rs.core.UriInfo uriInfo,
@PathParam("spaceKey")
String spaceKey,
@QueryParam("start")
int start,
@QueryParam("limit") @DefaultValue("25")
int limit)
-
recent
@GET
@Path("/recent")
public RestList<Label> recent(@Context
javax.ws.rs.core.UriInfo uriInfo,
@PathParam("spaceKey")
String spaceKey,
@QueryParam("start")
int start,
@QueryParam("limit") @DefaultValue("25")
int limit)
-