public static interface RemoteSpaceService.RemoteSpaceContentFinder
| Modifier and Type | Method and Description | 
|---|---|
| com.atlassian.util.concurrent.Promise<PageResponse<Content>> | fetchMany(ContentType type,
         PageRequest request)Deprecated. 
 since 7.0.1. Use  fetchManyCompletionStage(ContentType, PageRequest)instead. | 
| CompletionStage<PageResponse<Content>> | fetchManyCompletionStage(ContentType type,
                        PageRequest request)Retrieve a paged list of content of the given type contained in this space | 
| com.atlassian.util.concurrent.Promise<Map<ContentType,PageResponse<Content>>> | fetchMappedByType(PageRequest request)Deprecated. 
 since 7.0.1. Use  fetchMappedByTypeCompletionStage(PageRequest)instead. | 
| CompletionStage<Map<ContentType,PageResponse<Content>>> | fetchMappedByTypeCompletionStage(PageRequest request)Retrieve the all content contained in this space. | 
| RemoteSpaceService.RemoteSpaceContentFinder | withDepth(Depth depth)Set the depth to retrieve content on the SpaceContentFinder | 
@Deprecated com.atlassian.util.concurrent.Promise<Map<ContentType,PageResponse<Content>>> fetchMappedByType(PageRequest request)
fetchMappedByTypeCompletionStage(PageRequest) instead.The pageRequest limit is restricted to a maximum page size.
@Deprecated com.atlassian.util.concurrent.Promise<PageResponse<Content>> fetchMany(ContentType type, PageRequest request)
fetchManyCompletionStage(ContentType, PageRequest) instead.type - - the type of content to retrieve, either ContentType.Page or ContentType.BlogPostrequest - - a page request indicating the start and limit of items to returnCompletionStage<Map<ContentType,PageResponse<Content>>> fetchMappedByTypeCompletionStage(PageRequest request)
The pageRequest limit is restricted to a maximum page size.
CompletionStage<PageResponse<Content>> fetchManyCompletionStage(ContentType type, PageRequest request)
type - - the type of content to retrieve, either ContentType.Page or ContentType.BlogPostrequest - - a page request indicating the start and limit of items to returnRemoteSpaceService.RemoteSpaceContentFinder withDepth(Depth depth)
depth - - the depth in the page heirarchy of Content decendents to retrieve, a depth of 0 returns top level content in the spaceCopyright © 2003–2021 Atlassian. All rights reserved.