Uses of Class
com.atlassian.confluence.rest.api.model.RestList
-
-
Uses of RestList in com.atlassian.confluence.plugins.graphql.providers
Methods in com.atlassian.confluence.plugins.graphql.providers that return RestList Modifier and Type Method Description RestList<JsonContentProperty>
ContentPropertyProvider. properties(String key, String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo, graphql.schema.DataFetchingEnvironment env)
-
Uses of RestList in com.atlassian.confluence.plugins.restapi.enrich
Methods in com.atlassian.confluence.plugins.restapi.enrich with parameters of type RestList Modifier and Type Method Description void
CollectionEnricher. enrich(@NonNull RestList enrich, @NonNull SchemaType schemaType)
-
Uses of RestList in com.atlassian.confluence.plugins.restapi.enrich.model
Methods in com.atlassian.confluence.plugins.restapi.enrich.model with parameters of type RestList Modifier and Type Method Description void
RestListLinkEnricher. enrich(RestList enrich, SchemaType schemaType)
-
Uses of RestList in com.atlassian.confluence.plugins.restapi.resources
Methods in com.atlassian.confluence.plugins.restapi.resources that return RestList Modifier and Type Method Description RestList<Content>
ChildContentResource. childrenOfType(ContentId contentId, ContentType type, String expand, Integer parentVersion, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
Returns the direct children of a piece of Content, limited to a single child type.RestList<Content>
ChildContentResource. commentsOfContent(ContentId contentId, String expand, Integer parentVersion, int start, int limit, Set<String> location, String depth, javax.ws.rs.core.UriInfo uriInfo)
Returns the comments of a contentRestList<Content>
SpaceResource. contentsWithType(String spaceKey, String type, String depth, String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
Returns the content in this given space with the given typeRestList<Content>
AttachmentResource. createAttachments(ContentId containerId, ContentStatus containerStatus, boolean allowDuplicated, String expand, List<com.atlassian.plugins.rest.common.multipart.FilePart> fileParts, @Nullable List<com.atlassian.plugins.rest.common.multipart.FilePart> comments, @Nullable List<com.atlassian.plugins.rest.common.multipart.FilePart> minorEdits, @Nullable List<com.atlassian.plugins.rest.common.multipart.FilePart> hiddens)
Add one or more attachments to a Confluence Content entity, with optional comments.RestList<Content>
DescendantContentResource. descendantsOfType(ContentId contentId, ContentType type, String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
Returns the direct descendants of a piece of Content, limited to a single descendant type.RestList<JsonContentProperty>
ContentPropertyResource. findAll(ContentId contentId, String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
Returns a paginated list of content properties.RestList<Content>
AttachmentResource. getAttachments(ContentId contentId, String expand, int start, int limit, String filename, String mediaType, javax.ws.rs.core.UriInfo uriInfo)
Returns a paginated list of attachment Content entities within a single container.RestList<LongTaskStatus>
LongTaskResource. getTasks(String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
Returns information about all tracked long-running tasks.Methods in com.atlassian.confluence.plugins.restapi.resources that return types with arguments of type RestList Modifier and Type Method Description Map<ContentType,RestList<Content>>
SpaceResource. contents(String spaceKey, String depth, String expand, int start, int limit)
Returns the content in this given space -
Uses of RestList in com.atlassian.confluence.rest.api.model
Methods in com.atlassian.confluence.rest.api.model that return RestList Modifier and Type Method Description RestList<T>
RestList.Builder. build()
static <T> RestList<T>
RestList. createRestList(PageRequest pageRequest, PageResponse<T> pageResponse)
Deprecated.since 5.6.5.static <T> RestList<T>
RestList. createRestList(PageRequest request, List<T> results, boolean hasMore)
Deprecated.since 5.6.5.static <T> RestList<T>
RestList. createRestList(PageResponse<T> pageResponse)
Deprecated.since 5.6.5.
-