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

Packages that use LimitedRequest
com.atlassian.confluence.api.extension.typebinding   
com.atlassian.confluence.api.impl.pagination   
com.atlassian.confluence.api.impl.service.content.factory   
com.atlassian.confluence.api.impl.service.content.typebinding   
com.atlassian.confluence.api.impl.service.permissions   
com.atlassian.confluence.api.model.pagination   
com.atlassian.confluence.api.service.pagination   
com.atlassian.confluence.content   
com.atlassian.confluence.content.apisupport   
com.atlassian.confluence.content.persistence   
com.atlassian.confluence.content.persistence.hibernate   
com.atlassian.confluence.core.persistence   
com.atlassian.confluence.core.persistence.hibernate   
com.atlassian.confluence.follow.persistence.dao   
com.atlassian.confluence.follow.persistence.dao.hibernate   
com.atlassian.confluence.internal.longrunning   
com.atlassian.confluence.internal.pages   
com.atlassian.confluence.internal.pagination   
com.atlassian.confluence.internal.spaces   
com.atlassian.confluence.pages   
com.atlassian.confluence.pages.attachments   
com.atlassian.confluence.pages.persistence.dao   
com.atlassian.confluence.pages.persistence.dao.hibernate   
com.atlassian.confluence.spaces   
com.atlassian.confluence.util.longrunning   
test.plugin.apiavailable   
test.plugin.versionchildpolicy   
 

Uses of LimitedRequest in com.atlassian.confluence.api.extension.typebinding
 

Methods in com.atlassian.confluence.api.extension.typebinding with parameters of type LimitedRequest
 PageResponse<Content> ContentTypeBinding.getChildren(Content parent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
          Deprecated. Retrieve the children of an item of Content.
 

Uses of LimitedRequest in com.atlassian.confluence.api.impl.pagination
 

Methods in com.atlassian.confluence.api.impl.pagination with parameters of type LimitedRequest
<H,M> PageResponse<M>
PaginationServiceImpl.doPaginationRequest(LimitedRequest initialRequest, PaginationBatch<H> fetchPage, com.google.common.base.Function<? super H,M> modelConverter)
           
 

Uses of LimitedRequest in com.atlassian.confluence.api.impl.service.content.factory
 

Methods in com.atlassian.confluence.api.impl.service.content.factory with parameters of type LimitedRequest
 PageResponse<Content> ChildSupport.getChildrenList(ContentConvertible parent, ContentType childType, LimitedRequest limitedRequest, Expansions expansions, Depth depth, Collection<String> location)
           
 Map<ContentType,PageResponse<Content>> ChildSupport.getChildrenMap(ContentConvertible parent, LimitedRequest limitedRequest, Expansions childExpansions, Depth depth, Collection<String> location)
          Called from the ContentFactory when expanding "children" on a Content item being built.
 Map<ContentType,PageResponse<Content>> ChildSupport.getChildrenMap(Content parent, LimitedRequest limitedRequest, Expansions childExpansions, Depth depth)
           
 Map<ContentType,PageResponse<Content>> ChildSupport.getChildrenMap(Content parent, LimitedRequest limitedRequest, Expansions childExpansions, Depth depth, Collection<String> location)
           
 

Uses of LimitedRequest in com.atlassian.confluence.api.impl.service.content.typebinding
 

Methods in com.atlassian.confluence.api.impl.service.content.typebinding with parameters of type LimitedRequest
 PageResponse<Content> AttachmentContentTypeApiSupport.getAttachments(ContentId containerId, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super Attachment> predicate, Expansions contentExpansions)
           
protected  PageResponse<Content> AttachmentContentTypeApiSupport.getChildrenForThisType(Attachment content, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> BlogPostContentTypeApiSupport.getChildrenForThisType(BlogPost content, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> CommentContentTypeApiSupport.getChildrenForThisType(Comment content, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> CommentContentTypeApiSupport.getChildrenForThisType(Comment content, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)
           
protected  PageResponse<Content> PageContentTypeApiSupport.getChildrenForThisType(Page content, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> PageContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> CommentContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> BlogPostContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
 PageResponse<Content> AttachmentContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible parent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> CommentContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)
           
 

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

Methods in com.atlassian.confluence.api.impl.service.permissions with parameters of type LimitedRequest
 ContentRestriction ContentRestrictionFactory.buildFrom(ContentPermissionSet set, LimitedRequest limitedRequest, Expansions expansions)
          Produces a list of ContentRestrictions from a ContentPermissionSet.
 

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

Classes in com.atlassian.confluence.api.model.pagination that implement LimitedRequest
 class LimitedRequestImpl
           
 

Methods in com.atlassian.confluence.api.model.pagination that return LimitedRequest
static LimitedRequest LimitedRequestImpl.create(int maxLimit)
           
static LimitedRequest LimitedRequestImpl.create(int start, int limit, int maxLimit)
           
static LimitedRequest LimitedRequestImpl.create(PageRequest request, int maxLimit)
           
 

Methods in com.atlassian.confluence.api.model.pagination with parameters of type LimitedRequest
static
<T> PageResponseImpl<T>
PageResponseImpl.empty(boolean hasMore, LimitedRequest request)
           
static
<T> PageResponse<T>
PageResponseImpl.filteredPageResponse(LimitedRequest limitedRequest, List<T> items, com.google.common.base.Predicate<? super T> predicate)
          Reduces a list of items for a limited request by the predicate provided.
 PageResponseImpl.Builder<T> PageResponseImpl.Builder.pageRequest(LimitedRequest limitedRequest)
           
 

Constructors in com.atlassian.confluence.api.model.pagination with parameters of type LimitedRequest
SimplePageRequest(LimitedRequest request)
           
 

Uses of LimitedRequest in com.atlassian.confluence.api.service.pagination
 

Methods in com.atlassian.confluence.api.service.pagination with parameters of type LimitedRequest
<H,M> PageResponse<M>
PaginationService.doPaginationRequest(LimitedRequest pageRequest, PaginationBatch<H> fetchBatch, com.google.common.base.Function<? super H,M> modelConverter)
          Perform a pagination request, this will execute the fetchBatch function as many times as necessary to retrieve the page of results.
 

Uses of LimitedRequest in com.atlassian.confluence.content
 

Methods in com.atlassian.confluence.content with parameters of type LimitedRequest
<T> PageResponse<T>
DefaultCustomContentManager.findByQuery(ContentQuery<T> query, boolean cacheable, LimitedRequest request, com.google.common.base.Predicate<T> predicate)
           
<T> PageResponse<T>
CustomContentManager.findByQuery(ContentQuery<T> query, boolean cacheable, LimitedRequest request, com.google.common.base.Predicate<T> predicate)
          Get the results of a query for CustomContentEntityObjects
 

Uses of LimitedRequest in com.atlassian.confluence.content.apisupport
 

Methods in com.atlassian.confluence.content.apisupport with parameters of type LimitedRequest
 PageResponse<Content> ContentTypeApiSupport.getChildren(ContentConvertible content, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)
          Retrieve the children of an item of Content filtered by a predicate.
 PageResponse<Content> BaseContentTypeApiSupport.getChildren(ContentConvertible content, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)
          Retrieve the children of an item of Content.
protected abstract  PageResponse<Content> BaseContentTypeApiSupport.getChildrenForThisType(T content, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> BaseContentTypeApiSupport.getChildrenForThisType(T content, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)
          This method includes an additional parameter "location", it will call the default one if not overridden
protected abstract  PageResponse<Content> BaseContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> BaseContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)
          This method includes an additional parameter "location", it will call the default one if not overridden
 

Uses of LimitedRequest in com.atlassian.confluence.content.persistence
 

Methods in com.atlassian.confluence.content.persistence with parameters of type LimitedRequest
<T> PageResponse<T>
CustomContentDao.findByQuery(ContentQuery<T> query, boolean cacheable, LimitedRequest request, com.google.common.base.Predicate<T> predicate)
           
 

Uses of LimitedRequest in com.atlassian.confluence.content.persistence.hibernate
 

Methods in com.atlassian.confluence.content.persistence.hibernate with parameters of type LimitedRequest
<T> PageResponse<T>
PluginContentHibernateDao.findByQuery(ContentQuery<T> contentQuery, boolean cacheable, LimitedRequest limitedRequest, com.google.common.base.Predicate<T> predicate)
           
 

Uses of LimitedRequest in com.atlassian.confluence.core.persistence
 

Methods in com.atlassian.confluence.core.persistence with parameters of type LimitedRequest
 PageResponse<ContentEntityObject> ContentEntityObjectDao.findContentBySpaceIdAndStatus(long spaceId, String status, LimitedRequest limitedRequest, com.google.common.base.Predicate<Page> predicate)
          Retrieve content for a given space with a particular status.
 

Uses of LimitedRequest in com.atlassian.confluence.core.persistence.hibernate
 

Methods in com.atlassian.confluence.core.persistence.hibernate with parameters of type LimitedRequest
 PageResponse<ContentEntityObject> ContentEntityObjectHibernateDao.findContentBySpaceIdAndStatus(long spaceId, String status, LimitedRequest limitedRequest, com.google.common.base.Predicate<Page> predicate)
           
protected  List VersionedHibernateObjectDao.findNamedQueryStringParams(String queryName, boolean cacheable, LimitedRequest limitedRequest, Object... paramNamesAndValues)
          This method here instead of in HibernateObjectDao in bucket because we don't want to update bucket right now.
 

Uses of LimitedRequest in com.atlassian.confluence.follow.persistence.dao
 

Methods in com.atlassian.confluence.follow.persistence.dao with parameters of type LimitedRequest
 PageResponse<ConfluenceUser> ConnectionDao.getFollowees(ConfluenceUser follower, LimitedRequest limitedRequest, com.google.common.base.Predicate<ConfluenceUser> predicate)
          Returns a list of usernames for the users that the specified user is following
 PageResponse<ConfluenceUser> ConnectionDao.getFollowers(ConfluenceUser followee, LimitedRequest limitedRequest, com.google.common.base.Predicate<ConfluenceUser> predicate)
          Returns a list of users that are followers of the specified user
 

Uses of LimitedRequest in com.atlassian.confluence.follow.persistence.dao.hibernate
 

Methods in com.atlassian.confluence.follow.persistence.dao.hibernate with parameters of type LimitedRequest
 PageResponse<ConfluenceUser> HibernateConnectionDao.getFollowees(ConfluenceUser follower, LimitedRequest limitedRequest, com.google.common.base.Predicate<ConfluenceUser> predicate)
           
 PageResponse<ConfluenceUser> HibernateConnectionDao.getFollowers(ConfluenceUser followee, LimitedRequest limitedRequest, com.google.common.base.Predicate<ConfluenceUser> predicate)
           
 

Uses of LimitedRequest in com.atlassian.confluence.internal.longrunning
 

Methods in com.atlassian.confluence.internal.longrunning with parameters of type LimitedRequest
 PageResponse<LongTaskStatus> LongRunningTaskManagerInternal.getAllTasks(ConfluenceUser asUser, LimitedRequest request)
          Get all currently-tracked tasks that the specified user can see.
 

Uses of LimitedRequest in com.atlassian.confluence.internal.pages
 

Methods in com.atlassian.confluence.internal.pages with parameters of type LimitedRequest
 PageResponse<AbstractPage> PageManagerInternal.getAbstractPages(org.joda.time.DateTime date, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
          Returns pages and blog posts created on the specified date, that are in any of the given statuses, and also match the given predicate, limited to the page request.
 PageResponse<AbstractPage> PageManagerInternal.getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
          Returns all content in the instance within any of the specified statuses, limited to the specified content types and the pagination request.
 PageResponse<AbstractPage> PageManagerInternal.getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
          Returns all content in the space within any of the specified statuses and content types, limited to the pagination request.
 PageResponse<AbstractPage> PageManagerInternal.getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
          Returns pages and blog posts that belong to the space, exactly match the given title, are in any of the specified statuses, and match the given predicate, limited to the pagination request.
 PageResponse<AbstractPage> PageManagerInternal.getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
          Returns pages and blog posts that exactly match the given title, are in any of the specified statuses, and match the given predicate, limited to the pagination request.
 PageResponse<AbstractPage> PageManagerInternal.getAbstractPagesByCreationDate(org.joda.time.DateTime date, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
          Returns the pages and blog posts created on the given date, that also match the given predicate, limited to the page request.
 PageResponse<AbstractPage> PageManagerInternal.getAbstractPagesByTitle(String title, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
          Returns all current pages and blog posts that exactly match the given title, that also match the given predicate, limited to the pagination request.
 PageResponse<Attachment> AttachmentManagerInternal.getAttachments(ContentEntityObject content, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> filterPredicate)
          Returns the current attachments under the CEO.
 PageResponse<BlogPost> PageManagerInternal.getBlogPosts(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super BlogPost>... filter)
          Returns all the current blog posts in the space, limited to the pagination request.
 PageResponse<Comment> CommentManagerInternal.getChildren(Comment comment, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)
          Returns the children of a comment, limited to the pagination requested.
 PageResponse<Page> PageManagerInternal.getChildren(Page page, LimitedRequest pageRequest, Depth depth)
          Returns the children of a page, limited to the pagination requested.
 PageResponse<Comment> CommentManagerInternal.getPageComments(long pageId, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)
          Returns the children of a Page or Blogpost, limited to the pagination requested.
 PageResponse<Page> PageManagerInternal.getPages(LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page>... filter)
          Returns all the current pages in this instance of confluence, limited to the pagination request.
 PageResponse<Page> PageManagerInternal.getPages(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page>... filter)
          Returns all the current pages in the space, limited to the pagination request.
 PageResponse<Page> PageManagerInternal.getTopLevelPages(Space space, LimitedRequest pageRequest)
          Returns the current top-level pages in a space, limited to the pagination requested.
 

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

Methods in com.atlassian.confluence.internal.pagination that return LimitedRequest
static LimitedRequest LimitedRequestImpl.create(int maxLimit)
          Deprecated.  
static LimitedRequest LimitedRequestImpl.create(PageRequest request, int maxLimit)
          Deprecated.  
 

Methods in com.atlassian.confluence.internal.pagination with parameters of type LimitedRequest
static
<T> PageResponse<T>
SubListResponse.from(List<T> list, LimitedRequest request)
           
 

Uses of LimitedRequest in com.atlassian.confluence.internal.spaces
 

Methods in com.atlassian.confluence.internal.spaces with parameters of type LimitedRequest
 PageResponse<Space> SpaceManagerInternal.getSpaces(SpacesQuery query, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super Space>... filter)
          get a paginated list of spaces that match the spaceQuery, filtered by the given predicate
 

Uses of LimitedRequest in com.atlassian.confluence.pages
 

Methods in com.atlassian.confluence.pages with parameters of type LimitedRequest
 PageResponse<AbstractPage> DefaultPageManager.getAbstractPages(org.joda.time.DateTime date, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
           
 PageResponse<AbstractPage> DefaultPageManager.getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
           
 PageResponse<AbstractPage> DefaultPageManager.getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
           
 PageResponse<AbstractPage> DefaultPageManager.getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
           
 PageResponse<AbstractPage> DefaultPageManager.getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
           
 PageResponse<AbstractPage> DefaultPageManager.getAbstractPagesByCreationDate(org.joda.time.DateTime date, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
           
 PageResponse<AbstractPage> DefaultPageManager.getAbstractPagesByTitle(String title, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)
           
 PageResponse<Attachment> DelegatorAttachmentManager.getAttachments(ContentEntityObject content, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> filterPredicate)
           
 PageResponse<Attachment> DefaultAttachmentManager.getAttachments(ContentEntityObject content, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> filterPredicate)
           
 PageResponse<Attachment> CachingAttachmentManager.getAttachments(ContentEntityObject content, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> filterPredicate)
           
 PageResponse<BlogPost> DefaultPageManager.getBlogPosts(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super BlogPost>... filters)
           
 PageResponse<Comment> DefaultCommentManager.getChildren(Comment comment, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)
           
 PageResponse<Page> DefaultPageManager.getChildren(Page page, LimitedRequest pageRequest, Depth depth)
           
 PageResponse<Comment> DefaultCommentManager.getPageComments(long pageId, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)
           
 PageResponse<Page> DefaultPageManager.getPages(LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page>... filters)
           
 PageResponse<Page> DefaultPageManager.getPages(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page>... filters)
           
 PageResponse<Page> DefaultPageManager.getTopLevelPages(Space space, LimitedRequest pageRequest)
           
 

Uses of LimitedRequest in com.atlassian.confluence.pages.attachments
 

Methods in com.atlassian.confluence.pages.attachments with parameters of type LimitedRequest
 PageResponse<Attachment> CachingAttachmentDao.getLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> predicate)
           
 

Uses of LimitedRequest in com.atlassian.confluence.pages.persistence.dao
 

Methods in com.atlassian.confluence.pages.persistence.dao with parameters of type LimitedRequest
 PageResponse<AbstractPage> PageDao.getAbstractPages(org.joda.time.DateTime date, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
          Returns the abstract pages created on the given date and are in the , that also match the given filter, limited to the page request.
 PageResponse<AbstractPage> PageDao.getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
          Retrieves a page response of all pages found in this instance of Confluence, within any of the given statuses.
 PageResponse<AbstractPage> PageDao.getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
          Retrieves a page response for all content (pages and/or blog posts) in the given space, within any of the specified statuses and content types.
 PageResponse<AbstractPage> PageDao.getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
          Returns the abstract pages from a space that exactly match the given title and are in any of the specified statuses, and match the given filter, limited to the pagination request.
 PageResponse<AbstractPage> PageDao.getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
          Returns the abstract pages that exactly match the given title, are in any of the specified statuses, and match the given filter, limited to the pagination request.
 PageResponse<AbstractPage> PageDao.getAbstractPagesByCreationDate(org.joda.time.DateTime date, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
          Returns the abstract pages created on the given date, that also match the given filter, limited to the page request.
 PageResponse<AbstractPage> PageDao.getAbstractPagesByTitle(String title, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
          Returns the abstract pages that exactly match the given title, limited to the pagination request.
 PageResponse<BlogPost> PageDao.getBlogPosts(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super BlogPost> filter)
          Retrieves a page response of all the current blog posts in the give space.
 PageResponse<Comment> CommentDao.getChildren(Comment comment, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)
          Get the children of a comment
 PageResponse<Page> PageDao.getChildren(Page page, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> predicate, Depth depth)
           
 PageResponse<Attachment> WebDavAttachmentDao.getLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> predicate)
          Deprecated.  
 PageResponse<Attachment> AttachmentDao.getLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> predicate)
          Retrieves a paginated list of the latest version of attachments to the ceo filtered by the predicate
 PageResponse<Comment> CommentDao.getPageComments(long pageId, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)
          Get the comments belonging to a page
 PageResponse<Page> PageDao.getPages(LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> filter)
          Retrieves a page response of all the current pages of the Confluence instance.
 PageResponse<Page> PageDao.getPages(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> filter)
          Retrieves a page response of the current content in the given space.
 PageResponse<Page> PageDao.getTopLevelPages(Space space, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super Page> predicate)
           
 

Uses of LimitedRequest in com.atlassian.confluence.pages.persistence.dao.hibernate
 

Methods in com.atlassian.confluence.pages.persistence.dao.hibernate with parameters of type LimitedRequest
 PageResponse<ContentEntityObject> CachingPageDao.findContentBySpaceIdAndStatus(long spaceId, String status, LimitedRequest limitedRequest, com.google.common.base.Predicate<Page> predicate)
           
 PageResponse<AbstractPage> HibernatePageDao.getAbstractPages(org.joda.time.DateTime date, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> CachingPageDao.getAbstractPages(org.joda.time.DateTime date, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> HibernatePageDao.getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> CachingPageDao.getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> HibernatePageDao.getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> CachingPageDao.getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> HibernatePageDao.getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> CachingPageDao.getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> HibernatePageDao.getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> CachingPageDao.getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> HibernatePageDao.getAbstractPagesByCreationDate(org.joda.time.DateTime date, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> CachingPageDao.getAbstractPagesByCreationDate(org.joda.time.DateTime date, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> HibernatePageDao.getAbstractPagesByTitle(String title, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<AbstractPage> CachingPageDao.getAbstractPagesByTitle(String title, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)
           
 PageResponse<BlogPost> HibernatePageDao.getBlogPosts(Space space, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super BlogPost> filter)
           
 PageResponse<BlogPost> CachingPageDao.getBlogPosts(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super BlogPost> filter)
           
 PageResponse<Comment> HibernateCommentDao.getChildren(Comment comment, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)
           
 PageResponse<Page> HibernatePageDao.getChildren(Page page, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> predicate, Depth depth)
           
 PageResponse<Page> CachingPageDao.getChildren(Page page, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> predicate, Depth depth)
           
 PageResponse<Attachment> AbstractHibernateAttachmentDao.getLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest request, com.google.common.base.Predicate<? super Attachment> predicate)
           
 PageResponse<Comment> HibernateCommentDao.getPageComments(long pageId, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)
           
 PageResponse<Page> HibernatePageDao.getPages(LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> filter)
           
 PageResponse<Page> CachingPageDao.getPages(LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> filter)
           
 PageResponse<Page> HibernatePageDao.getPages(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> filter)
           
 PageResponse<Page> CachingPageDao.getPages(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> filter)
           
 PageResponse<Page> HibernatePageDao.getTopLevelPages(Space space, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super Page> predicate)
           
 PageResponse<Page> CachingPageDao.getTopLevelPages(Space space, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super Page> predicate)
           
 

Uses of LimitedRequest in com.atlassian.confluence.spaces
 

Methods in com.atlassian.confluence.spaces with parameters of type LimitedRequest
 PageResponse<Space> DefaultSpaceManager.getSpaces(SpacesQuery query, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super Space>... filter)
           
 

Uses of LimitedRequest in com.atlassian.confluence.util.longrunning
 

Methods in com.atlassian.confluence.util.longrunning with parameters of type LimitedRequest
 PageResponse<LongTaskStatus> DefaultLongRunningTaskManager.getAllTasks(ConfluenceUser asUser, LimitedRequest request)
           
 

Uses of LimitedRequest in test.plugin.apiavailable
 

Methods in test.plugin.apiavailable with parameters of type LimitedRequest
protected  PageResponse<Content> DummyAvailableContentTypeSupport.getChildrenForThisType(CustomContentEntityObject content, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> DummyAvailableContentTypeSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
 

Uses of LimitedRequest in test.plugin.versionchildpolicy
 

Methods in test.plugin.versionchildpolicy with parameters of type LimitedRequest
protected  PageResponse<Content> DummyOriginalVersionContentTypeApiSupport.getChildrenForThisType(CustomContentEntityObject content, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> DummyCurrentVersionContentTypeApiSupport.getChildrenForThisType(CustomContentEntityObject content, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> DummyOriginalVersionContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
protected  PageResponse<Content> DummyCurrentVersionContentTypeApiSupport.getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
 



Copyright © 2003–2015 Atlassian. All rights reserved.