Interface RemoteContentService.RemoteContentFetcher
-
- All Superinterfaces:
RemoteContentService.RemoteSingleContentFetcher
,RemoteSingleFetcher<Content>
- All Known Subinterfaces:
RemoteContentService.RemoteContentFinder
,RemoteContentService.RemoteParameterContentFinder
- All Known Implementing Classes:
AbstractRemoteContentService.AbstractRemoteContentFinder
,GraphQLRemoteContentServiceImpl.RemoteContentFinderImpl
,RemoteContentServiceImpl.RemoteContentFinderImpl
- Enclosing interface:
- RemoteContentService
public static interface RemoteContentService.RemoteContentFetcher extends RemoteContentService.RemoteSingleContentFetcher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description com.atlassian.util.concurrent.Promise<PageResponse<Content>>
fetchMany(ContentType type, PageRequest request)
Deprecated.since 7.0.1.CompletionStage<PageResponse<Content>>
fetchManyCompletionStage(ContentType type, PageRequest request)
com.atlassian.util.concurrent.Promise<Map<ContentType,PageResponse<Content>>>
fetchMappedByContentType(PageRequest request)
Deprecated.since 7.0.1.CompletionStage<Map<ContentType,PageResponse<Content>>>
fetchMappedByContentTypeCompletionStage(PageRequest request)
-
Methods inherited from interface com.atlassian.confluence.rest.client.RemoteSingleFetcher
fetch, fetchCompletionStage, fetchOne, fetchOneOrNull, fetchOrNull, fetchOrNullCompletionStage
-
-
-
-
Method Detail
-
fetchMany
@Deprecated com.atlassian.util.concurrent.Promise<PageResponse<Content>> fetchMany(ContentType type, PageRequest request)
Deprecated.since 7.0.1. UsefetchManyCompletionStage(ContentType, PageRequest)
instead.
-
fetchManyCompletionStage
CompletionStage<PageResponse<Content>> fetchManyCompletionStage(ContentType type, PageRequest request)
- Since:
- 7.0.1
-
fetchMappedByContentType
@Deprecated com.atlassian.util.concurrent.Promise<Map<ContentType,PageResponse<Content>>> fetchMappedByContentType(PageRequest request)
Deprecated.since 7.0.1. UsefetchMappedByContentTypeCompletionStage(PageRequest)
instead.
-
fetchMappedByContentTypeCompletionStage
CompletionStage<Map<ContentType,PageResponse<Content>>> fetchMappedByContentTypeCompletionStage(PageRequest request)
- Since:
- 7.0.1
-
-