Uses of Interface
com.atlassian.confluence.api.model.pagination.PageRequest

Packages that use PageRequest
com.atlassian.confluence.api.impl.service.content   
com.atlassian.confluence.api.impl.service.longtasks   
com.atlassian.confluence.api.model.pagination   
com.atlassian.confluence.api.service.content   
com.atlassian.confluence.api.service.longtasks   
com.atlassian.confluence.api.service.search   
com.atlassian.confluence.internal.pagination   
com.atlassian.confluence.rest.api.model   
com.atlassian.confluence.rest.client   
 

Uses of PageRequest in com.atlassian.confluence.api.impl.service.content
 

Methods in com.atlassian.confluence.api.impl.service.content with parameters of type PageRequest
 PageResponse<Content> SpaceServiceImpl.SpaceContentImpl.fetchMany(ContentType type, PageRequest pageRequest)
           
 PageResponse<Space> SpaceServiceImpl.SpaceFinderImpl.fetchMany(PageRequest request)
           
 java.util.Map<ContentType,PageResponse<Content>> SpaceServiceImpl.SpaceContentImpl.fetchMappedByType(PageRequest pageRequest)
           
 PageResponse<Label> ContentLabelServiceImpl.getLabels(ContentId contentId, java.util.Collection<Label.Prefix> prefixes, PageRequest pageRequest)
           
 

Uses of PageRequest in com.atlassian.confluence.api.impl.service.longtasks
 

Methods in com.atlassian.confluence.api.impl.service.longtasks with parameters of type PageRequest
 PageResponse<LongTaskStatus> LongTaskServiceImpl.getAll(PageRequest request, Expansion... expansions)
           
 

Uses of PageRequest in com.atlassian.confluence.api.model.pagination
 

Classes in com.atlassian.confluence.api.model.pagination that implement PageRequest
 class SimplePageRequest
          A simple immutable implementation of PageRequest
 

Fields in com.atlassian.confluence.api.model.pagination declared as PageRequest
static PageRequest SimplePageRequest.ONE
           
 

Methods in com.atlassian.confluence.api.model.pagination that return PageRequest
 PageRequest PageResponseImpl.getPageRequest()
           
 PageRequest PageResponse.getPageRequest()
           
 

Methods in com.atlassian.confluence.api.model.pagination with parameters of type PageRequest
static LimitedRequest LimitedRequestImpl.create(PageRequest request, int maxLimit)
           
static
<T> PageResponseImpl<T>
PageResponseImpl.empty(boolean hasMore, PageRequest request)
           
 PageResponseImpl.Builder<T> PageResponseImpl.Builder.pageRequest(PageRequest request)
           
 

Constructors in com.atlassian.confluence.api.model.pagination with parameters of type PageRequest
LimitedRequestImpl(PageRequest request, int maxLimit)
           
 

Uses of PageRequest in com.atlassian.confluence.api.service.content
 

Methods in com.atlassian.confluence.api.service.content with parameters of type PageRequest
 PageResponse<Content> SpaceService.SpaceContentFinder.fetchMany(ContentType type, PageRequest request)
          Retrieve all content contained in this space of the particular type
 PageResponse<Content> ContentService.ContentFetcher.fetchMany(ContentType type, PageRequest request)
           
 PageResponse<Content> ChildContentService.ChildContentFinder.fetchMany(ContentType type, PageRequest request)
          Retrieve all content of the particular type contained in this parent.
 PageResponse<Space> SpaceService.SpaceFinder.fetchMany(PageRequest request)
           
 PageResponse<JsonContentProperty> ContentPropertyService.ContentPropertyFetcher.fetchMany(PageRequest request)
           
 PageResponse<Content> AttachmentService.AttachmentFinder.fetchMany(PageRequest request)
          Fetch the attachments from the datastore that match the restrictions applied with the withX methods.
 java.util.Map<ContentType,PageResponse<Content>> ContentService.ContentFetcher.fetchMappedByContentType(PageRequest request)
           
 java.util.Map<ContentType,PageResponse<Content>> SpaceService.SpaceContentFinder.fetchMappedByType(PageRequest request)
          Retrieve all content contained in this space mapped by ContentType
 java.util.Map<ContentType,PageResponse<Content>> ChildContentService.ChildContentFinder.fetchMappedByType(PageRequest request)
          Retrieve all content contained in this parent mapped by ContentType.
 PageResponse<Label> ContentLabelService.getLabels(ContentId contentId, java.util.Collection<Label.Prefix> prefixes, PageRequest pageRequest)
          Get the labels attached to a given piece of content in the given namespaces
 

Uses of PageRequest in com.atlassian.confluence.api.service.longtasks
 

Methods in com.atlassian.confluence.api.service.longtasks with parameters of type PageRequest
 PageResponse<LongTaskStatus> LongTaskService.getAll(PageRequest request, Expansion... expansions)
          Returns the status of all tracked long-running tasks visible to the user.
 

Uses of PageRequest in com.atlassian.confluence.api.service.search
 

Methods in com.atlassian.confluence.api.service.search with parameters of type PageRequest
 PageResponse<Content> CQLSearchService.searchContent(java.lang.String cqlInput, PageRequest pageRequest, Expansion... expansions)
          Execute a CQL search query and fetch a page results.
 

Uses of PageRequest in com.atlassian.confluence.internal.pagination
 

Methods in com.atlassian.confluence.internal.pagination with parameters of type PageRequest
static LimitedRequest LimitedRequestImpl.create(PageRequest request, int maxLimit)
          Deprecated.  
 

Uses of PageRequest in com.atlassian.confluence.rest.api.model
 

Classes in com.atlassian.confluence.rest.api.model that implement PageRequest
 class RestPageRequest
          A request for a page of data.
 

Methods in com.atlassian.confluence.rest.api.model that return PageRequest
 PageRequest RestList.getPageRequest()
           
 

Methods in com.atlassian.confluence.rest.api.model with parameters of type PageRequest
static
<T> RestList<T>
RestList.createRestList(PageRequest request, java.util.List<T> results, boolean hasMore)
           
static
<T> RestList<T>
RestList.createRestList(PageRequest pageRequest, PageResponse<T> pageResponse)
           
 

Uses of PageRequest in com.atlassian.confluence.rest.client
 

Methods in com.atlassian.confluence.rest.client with parameters of type PageRequest
protected  com.sun.jersey.api.client.WebResource AbstractRemoteService.addPageRequest(com.sun.jersey.api.client.WebResource resource, PageRequest pageRequest)
           
protected  com.sun.jersey.api.client.WebResource AbstractRemoteService.addPageRequestParams(com.sun.jersey.api.client.WebResource resource, PageRequest request)
          Adds start and limit query params to honour the pageRequest values
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteSpaceServiceImpl.RemoteSpaceContentFinderImpl.fetchMany(ContentType type, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteSpaceService.RemoteSpaceContentFinder.fetchMany(ContentType type, PageRequest request)
          Retrieve a paged list of content of the given type contained in this space
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteContentServiceImpl.RemoteContentFinderImpl.fetchMany(ContentType type, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteContentService.RemoteContentFetcher.fetchMany(ContentType type, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteChildContentServiceImpl.RemoteChildContentFinderImpl.fetchMany(ContentType type, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteChildContentService.RemoteChildContentFinder.fetchMany(ContentType type, PageRequest request)
          Retrieve a paged list of content of the given type contained in this parent
 com.atlassian.util.concurrent.Promise<PageResponse<Space>> RemoteSpaceServiceImpl.RemoteSpaceFinderImpl.fetchMany(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Space>> RemoteSpaceService.RemoteSpaceFinder.fetchMany(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<JsonContentProperty>> RemoteContentPropertyServiceImpl.RemoteContentPropertyFinderImpl.fetchMany(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<JsonContentProperty>> RemoteContentPropertyService.RemoteContentPropertyFetcher.fetchMany(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteAttachmentServiceImpl.RemoteAttachmentFinderImpl.fetchMany(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteAttachmentService.RemoteAttachmentFinder.fetchMany(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteContentServiceImpl.RemoteContentFinderImpl.fetchMappedByContentType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteContentService.RemoteContentFetcher.fetchMappedByContentType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteSpaceServiceImpl.RemoteSpaceContentFinderImpl.fetchMappedByType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteSpaceService.RemoteSpaceContentFinder.fetchMappedByType(PageRequest request)
          Retrieve the all content contained in this space.
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteChildContentServiceImpl.RemoteChildContentFinderImpl.fetchMappedByType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteChildContentService.RemoteChildContentFinder.fetchMappedByType(PageRequest request)
          Retrieve the content contained in this parent.
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteContentServiceImpl.getChildren(Content parent, PageRequest pageRequest, Expansion... expansions)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteContentService.getChildren(Content parent, PageRequest pageRequest, Expansion... expansion)
          Retrieve the children of an item of Content.
 com.atlassian.util.concurrent.Promise<PageResponse<Label>> RemoteContentLabelServiceImpl.getLabels(ContentId contentId, java.util.Collection<Label.Prefix> prefixes, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<? extends java.lang.Iterable<Label>> RemoteContentLabelService.getLabels(ContentId contentId, java.util.Collection<Label.Prefix> prefixes, PageRequest request)
          Get the labels attached to a given piece of content in the given namespaces
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteCQLSearchServiceImpl.searchContent(java.lang.String cql, PageRequest request, Expansion... expansions)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteCQLSearchService.searchContent(java.lang.String cql, PageRequest request, Expansion... expansions)
           
 



Copyright © 2003-2014 Atlassian. All Rights Reserved.