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

Packages that use PageRequest
com.atlassian.confluence.api.impl.pagination   
com.atlassian.confluence.api.impl.service.content   
com.atlassian.confluence.api.impl.service.longtasks   
com.atlassian.confluence.api.impl.service.network   
com.atlassian.confluence.api.impl.service.permissions   
com.atlassian.confluence.api.model.pagination   
com.atlassian.confluence.api.service.content   
com.atlassian.confluence.api.service.longtasks   
com.atlassian.confluence.api.service.network   
com.atlassian.confluence.api.service.permissions   
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.pagination
 

Methods in com.atlassian.confluence.api.impl.pagination with parameters of type PageRequest
 PageResponse<T> Paginated.page(PageRequest request)
          Retrieves a page of data.
 

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)
           
 Map<ContentType,PageResponse<Content>> SpaceServiceImpl.SpaceContentImpl.fetchMappedByType(PageRequest pageRequest)
           
 PageResponse<Label> ContentLabelServiceImpl.getLabels(ContentId contentId, 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.impl.service.network
 

Methods in com.atlassian.confluence.api.impl.service.network with parameters of type PageRequest
 PageResponse<User> NetworkServiceImpl.getFollowers(com.atlassian.sal.api.user.UserKey userKey, PageRequest request)
           
 PageResponse<User> NetworkServiceImpl.getFollowing(com.atlassian.sal.api.user.UserKey userKey, PageRequest request)
           
 

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

Methods in com.atlassian.confluence.api.impl.service.permissions with parameters of type PageRequest
 ContentRestriction ContentRestrictionServiceImpl.getRestrictionsForOperation(ContentId target, OperationKey operationKey, PageRequest pageRequest, Expansion... allExpansions)
           
 

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.
 Map<ContentType,PageResponse<Content>> ContentService.ContentFetcher.fetchMappedByContentType(PageRequest request)
           
 Map<ContentType,PageResponse<Content>> SpaceService.SpaceContentFinder.fetchMappedByType(PageRequest request)
          Retrieve all content contained in this space mapped by ContentType
 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, 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.network
 

Methods in com.atlassian.confluence.api.service.network with parameters of type PageRequest
 PageResponse<User> NetworkService.getFollowers(com.atlassian.sal.api.user.UserKey userKey, PageRequest request)
          Gets the users who are following the given user.
 PageResponse<User> NetworkService.getFollowing(com.atlassian.sal.api.user.UserKey userKey, PageRequest request)
          Gets the users that the given user is following.
 

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

Methods in com.atlassian.confluence.api.service.permissions with parameters of type PageRequest
 ContentRestriction ContentRestrictionService.getRestrictionsForOperation(ContentId target, OperationKey operationKey, PageRequest pageRequest, Expansion... expansions)
          Retrieves all restrictions for given operation key on given content.
 

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(String cqlInput, PageRequest pageRequest, Expansion... expansions)
          Execute a CQL search query and fetch a page results.
 PageResponse<Content> CQLSearchService.searchContent(String cqlInput, SearchContext searchContext, 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, List<T> results, boolean hasMore)
          Deprecated. 
static
<T> RestList<T>
RestList.createRestList(PageRequest pageRequest, PageResponse<T> pageResponse)
          Deprecated. 
static
<T> RestList.Builder<T>
RestList.newRestList(PageRequest pageRequest)
           
 RestList.Builder<T> RestList.Builder.pageRequest(PageRequest pageRequest)
           
 

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<Map<ContentType,PageResponse<Content>>> RemoteContentServiceImpl.RemoteContentFinderImpl.fetchMappedByContentType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<Map<ContentType,PageResponse<Content>>> RemoteContentService.RemoteContentFetcher.fetchMappedByContentType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<Map<ContentType,PageResponse<Content>>> RemoteSpaceServiceImpl.RemoteSpaceContentFinderImpl.fetchMappedByType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<Map<ContentType,PageResponse<Content>>> RemoteSpaceService.RemoteSpaceContentFinder.fetchMappedByType(PageRequest request)
          Retrieve the all content contained in this space.
 com.atlassian.util.concurrent.Promise<Map<ContentType,PageResponse<Content>>> RemoteChildContentServiceImpl.RemoteChildContentFinderImpl.fetchMappedByType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<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, Collection<Label.Prefix> prefixes, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<? extends Iterable<Label>> RemoteContentLabelService.getLabels(ContentId contentId, 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<ContentRestriction> RemoteContentRestrictionServiceImpl.getRestrictionsForOperation(ContentId target, OperationKey operationKey, PageRequest pageRequest, Expansion... expansions)
           
 com.atlassian.util.concurrent.Promise<ContentRestriction> RemoteContentRestrictionService.getRestrictionsForOperation(ContentId target, OperationKey operationKey, PageRequest pageRequest, Expansion... expansions)
          Retrieves all restrictions for given operation key on given content.
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteCQLSearchServiceImpl.searchContent(String cql, PageRequest request, Expansion... expansions)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteCQLSearchService.searchContent(String cql, PageRequest request, Expansion... expansions)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteCQLSearchServiceImpl.searchContent(String cqlInput, SearchContext searchContext, PageRequest request, Expansion... expansions)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteCQLSearchService.searchContent(String cqlInput, SearchContext searchContext, PageRequest pageRequest, Expansion... expansions)
           
 



Copyright © 2003–2015 Atlassian. All rights reserved.