Uses of Interface
com.atlassian.confluence.api.model.pagination.LimitedRequest
-
-
Uses of LimitedRequest in bucket.core.persistence
Methods in bucket.core.persistence with parameters of type LimitedRequest Modifier and Type Method Description <T> @NonNull PageResponse<T>ObjectDao. findByClassIds(Iterable<Long> ids, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super T> filter)Deprecated, for removal: This API element is subject to removal in a future version.since 8.6 -
Uses of LimitedRequest in com.atlassian.confluence.api.impl.pagination
Methods in com.atlassian.confluence.api.impl.pagination with parameters of type LimitedRequest Modifier and Type Method Description static <H,M>
PageResponse<M>PagerToPageResponseHelper. createFromPager(com.atlassian.user.search.page.Pager<H> pager, LimitedRequest limitedRequest, Function<H,M> transformer)Helper to build page responses from atlassian user Pagersstatic <H,M>
PageResponse<M>PagerToPageResponseHelper. fromPager(com.atlassian.user.search.page.Pager<H> pager, LimitedRequest limitedRequest, com.google.common.base.Function<H,M> transfromer)Deprecated.since 7.0.1.<H,M>
PageResponse<M>PaginationServiceImpl. performPaginationListRequest(LimitedRequest initialRequest, PaginationBatch<H> fetchPage, Function<Iterable<H>,Iterable<M>> modelConverter)<H,M>
PageResponse<M>PaginationServiceImpl. performPaginationListRequestWithCursor(LimitedRequest initialRequest, Function<LimitedRequest,PageResponse<H>> fetchBatch, Function<Iterable<H>,Iterable<M>> modelConverter, BiFunction<H,Boolean,Cursor> cursorCalculator)<H,M>
PageResponse<M>PaginationServiceImpl. performPaginationRequest(LimitedRequest initialRequest, PaginationBatch<H> fetchPage, Function<? super H,M> modelConverter)Method parameters in com.atlassian.confluence.api.impl.pagination with type arguments of type LimitedRequest Modifier and Type Method Description <H,M>
PageResponse<M>PaginationServiceImpl. performPaginationListRequestWithCursor(LimitedRequest initialRequest, Function<LimitedRequest,PageResponse<H>> fetchBatch, Function<Iterable<H>,Iterable<M>> modelConverter, BiFunction<H,Boolean,Cursor> cursorCalculator) -
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 Modifier and Type Method Description PageResponse<Content>ChildSupport. getChildrenList(ContentConvertible parent, ContentType childType, LimitedRequest limitedRequest, Expansions expansions, Depth depth, Collection<String> location)Map<ContentType,PageResponse<Content>>ChildSupport. getChildrenMap(ContentSelector parentSelector, LimitedRequest limitedRequest, Expansions childExpansions, Depth depth)Map<ContentType,PageResponse<Content>>ChildSupport. getChildrenMap(ContentSelector parentSelector, LimitedRequest limitedRequest, Expansions childExpansions, Depth depth, Collection<String> location)Map<ContentType,PageResponse<Content>>ChildSupport. getChildrenMap(ContentConvertible parent, LimitedRequest limitedRequest, Expansions childExpansions, Depth depth, Collection<String> location)Called from theContentFactorywhen expanding "children" on a Content item being built. -
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 Modifier and Type Method Description 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)PageResponse<Content>AttachmentContentTypeApiSupport. getChildrenOfThisTypeForOtherType(ContentConvertible parent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)protected PageResponse<Content>BlogPostContentTypeApiSupport. 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>CommentContentTypeApiSupport. getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)protected PageResponse<Content>PageContentTypeApiSupport. getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth) -
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 Modifier and Type Method Description ContentRestrictionContentRestrictionFactory. buildFrom(@NonNull ContentPermissionSet set, LimitedRequest limitedRequest, Expansions expansions)Produces aContentRestrictionfrom aContentPermissionSets -
Uses of LimitedRequest in com.atlassian.confluence.api.model.pagination
Subinterfaces of LimitedRequest in com.atlassian.confluence.api.model.pagination Modifier and Type Interface Description interfaceSkipDiscardLimitedRequestThis will allow to skip {@see com.atlassian.confluence.api.impl.pagination.PaginationServiceImpl.DiscardingThreshold}Classes in com.atlassian.confluence.api.model.pagination that implement LimitedRequest Modifier and Type Class Description classLimitedRequestImplMethods in com.atlassian.confluence.api.model.pagination that return LimitedRequest Modifier and Type Method Description static LimitedRequestLimitedRequestImpl. create(int maxLimit)static LimitedRequestLimitedRequestImpl. create(int start, int limit, int maxLimit)static LimitedRequestLimitedRequestImpl. create(int start, int limit, int maxLimit, boolean shouldSkipDiscardingThreshold)static LimitedRequestLimitedRequestImpl. create(Cursor cursor, int limit, int maxLimit)static LimitedRequestLimitedRequestImpl. create(PageRequest request, int maxLimit)Methods in com.atlassian.confluence.api.model.pagination with parameters of type LimitedRequest Modifier and Type Method Description 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)Deprecated.since 6.10.0.static <T> PageResponse<T>PageResponseImpl. filteredResponse(LimitedRequest limitedRequest, List<T> items, Predicate<? super T> predicate)Reduces a list of items for a limited request by the predicate provided.static <T> PageResponse<T>PageResponseImpl. filteredResponseWithCursor(LimitedRequest limitedRequest, List<T> items, Predicate<? super T> predicate, BiFunction<T,Boolean,Cursor> cursorCalculator, Comparator<T> ascComparator)Reduces a list of items for a limited request by the predicate provided.BPageResponseImpl.Builder. pageRequest(LimitedRequest limitedRequest)Constructors in com.atlassian.confluence.api.model.pagination with parameters of type LimitedRequest Constructor Description 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 Modifier and Type Method Description default <H,M>
PageResponse<M>PaginationService. doPaginationListRequest(LimitedRequest pageRequest, PaginationBatch<H> fetchBatch, com.google.common.base.Function<Iterable<H>,Iterable<M>> modelConverter)Deprecated.since 7.0.1.default <H,M>
PageResponse<M>PaginationService. doPaginationRequest(LimitedRequest pageRequest, PaginationBatch<H> fetchBatch, com.google.common.base.Function<? super H,M> modelConverter)Deprecated.since 7.0.1.<H,M>
PageResponse<M>PaginationService. performPaginationListRequest(LimitedRequest pageRequest, PaginationBatch<H> fetchBatch, Function<Iterable<H>,Iterable<M>> modelConverter)Perform a pagination request, this will execute the fetchBatch function as many times as necessary to retrieve the page of results.default <H,M>
PageResponse<M>PaginationService. performPaginationListRequestWithCursor(LimitedRequest pageRequest, Function<LimitedRequest,PageResponse<H>> fetchBatch, Function<Iterable<H>,Iterable<M>> modelConverter, BiFunction<H,Boolean,Cursor> cursorCalculator)Perform a pagination request, this will execute the fetchBatch function as many times as to retrieve the page of results.<H,M>
PageResponse<M>PaginationService. performPaginationRequest(LimitedRequest pageRequest, PaginationBatch<H> fetchBatch, 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.Method parameters in com.atlassian.confluence.api.service.pagination with type arguments of type LimitedRequest Modifier and Type Method Description default <H,M>
PageResponse<M>PaginationService. performPaginationListRequestWithCursor(LimitedRequest pageRequest, Function<LimitedRequest,PageResponse<H>> fetchBatch, Function<Iterable<H>,Iterable<M>> modelConverter, BiFunction<H,Boolean,Cursor> cursorCalculator)Perform a pagination request, this will execute the fetchBatch function as many times as 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 Modifier and Type Method Description default <T> @NonNull PageResponse<T>CustomContentManager. findByQuery(ContentQuery<T> query, boolean cacheable, LimitedRequest request, com.google.common.base.Predicate<T> predicate)Deprecated.since 7.0.1.default <T> @NonNull PageResponse<T>CustomContentManager. findByQuery(ContentQuery<T> query, LimitedRequest request, Predicate<T> predicate)Get the results of a query for CustomContentEntityObjects<T> @NonNull PageResponse<T>CustomContentManager. findByQueryAndFilter(ContentQuery<T> query, boolean cacheable, LimitedRequest request, Predicate<T> predicate)Deprecated.since 8.7default @NonNull PageResponse<Content>CustomContentManager. getChildrenOfType(ContentEntityObject entity, String contentModuleKey, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super CustomContentEntityObject> predicate)Deprecated.since 7.0.1.@NonNull PageResponse<Content>CustomContentManager. getChildrenOfTypeAndFilter(ContentEntityObject entity, String contentModuleKey, LimitedRequest limitedRequest, Expansions expansions, Depth depth, Predicate<? super CustomContentEntityObject> predicate)Returns the children of a CustomContentEntityObject, limited to the pagination requested. -
Uses of LimitedRequest in com.atlassian.confluence.content.apisupport
Methods in com.atlassian.confluence.content.apisupport with parameters of type LimitedRequest Modifier and Type Method Description default PageResponse<Content>ContentTypeApiSupport. getChildren(ContentConvertible content, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)Deprecated.since 7.0.1.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)Deprecated.since 7.0.1.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)Deprecated.since 7.0.1.protected PageResponse<Content>CustomContentTypeApiSupport. getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth)protected PageResponse<Content>CustomContentTypeApiSupport. getChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth, com.google.common.base.Predicate<? super ContentEntityObject> predicate)Deprecated.since 7.0.1.PageResponse<Content>BaseContentTypeApiSupport. getFilteredChildren(ContentConvertible content, LimitedRequest limitedRequest, Expansions expansions, Depth depth, Predicate<? super ContentEntityObject> predicate)Retrieve the children of an item of Content.PageResponse<Content>ContentTypeApiSupport. getFilteredChildren(ContentConvertible content, LimitedRequest limitedRequest, Expansions expansions, Depth depth, Predicate<? super ContentEntityObject> predicate)Retrieve the children of an item of Content filtered by a predicate.protected PageResponse<Content>BaseContentTypeApiSupport. getFilteredChildrenForThisType(T content, LimitedRequest limitedRequest, Expansions expansions, Depth depth, Predicate<? super ContentEntityObject> predicate)This method includes an additional parameter "location", it will call the default one if not overriddenprotected PageResponse<Content>BaseContentTypeApiSupport. getFilteredChildrenOfThisTypeForOtherType(ContentConvertible otherTypeParent, LimitedRequest limitedRequest, Expansions expansions, Depth depth, 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 Modifier and Type Method Description <T> List<T>CustomContentDao. findByQuery(ContentQuery<T> query, boolean cacheable, LimitedRequest request)default <T> PageResponse<T>CustomContentDao. findByQuery(ContentQuery<T> query, boolean cacheable, LimitedRequest request, com.google.common.base.Predicate<T> predicate)Deprecated.since 7.0.1.default <T> PageResponse<T>CustomContentDao. findByQueryAndFilter(ContentQuery<T> query, boolean cacheable, LimitedRequest request, Predicate<T> predicate)Deprecated. -
Uses of LimitedRequest in com.atlassian.confluence.content.persistence.hibernate
Methods in com.atlassian.confluence.content.persistence.hibernate with parameters of type LimitedRequest Modifier and Type Method Description <T> List<T>PluginContentHibernateDao. findByQuery(ContentQuery<T> contentQuery, boolean cacheable, LimitedRequest limitedRequest) -
Uses of LimitedRequest in com.atlassian.confluence.core
Methods in com.atlassian.confluence.core with parameters of type LimitedRequest Modifier and Type Method Description @NonNull PageResponse<AbstractPage>ContentEntityManager. getPageAndBlogPostsVersionsLastEditedByUser(@Nullable com.atlassian.sal.api.user.UserKey userKey, LimitedRequest request)Retrieve a page of entities that have been modified by the user, in order of the user's most recent modification.@NonNull PageResponse<AbstractPage>ContentEntityManager. getPageAndBlogPostsVersionsLastEditedByUserIncludingDrafts(@Nullable com.atlassian.sal.api.user.UserKey userKey, LimitedRequest request)Retrieve a page of entities that have been modified by the user, in order of the user's most recent modification. -
Uses of LimitedRequest in com.atlassian.confluence.core.persistence
Methods in com.atlassian.confluence.core.persistence with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<SpaceContentEntityObject>ContentEntityObjectDao. findContentBySpaceIdAndStatus(long spaceId, String status, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super SpaceContentEntityObject> predicate)Deprecated.since 7.0.1.PageResponse<AbstractPage>ContentEntityObjectDao. getPageAndBlogPostsVersionsLastEditedByUser(@Nullable com.atlassian.sal.api.user.UserKey userKey, LimitedRequest request)Retrieve a page of entities, either the current version or historical version, that have been modified by the user, in order of the user's most recent modification.PageResponse<AbstractPage>ContentEntityObjectDao. getPageAndBlogPostsVersionsLastEditedByUserIncludingDrafts(@Nullable com.atlassian.sal.api.user.UserKey userKey, LimitedRequest request)Retrieve a page of entities, either the current version or historical version, that have been modified by the user, in order of the user's most recent modification.default PageResponse<ContentEntityObject>ContentEntityObjectDao. getTrashedContents(String spaceKey, LimitedRequest pageRequest, @Nullable Predicate<? super ContentEntityObject> filter)PageResponse<VersionHistorySummary>ContentEntityObjectDao. getVersionHistorySummary(long originalContentId, LimitedRequest request)Get version history with pagination. -
Uses of LimitedRequest in com.atlassian.confluence.core.persistence.hibernate
Methods in com.atlassian.confluence.core.persistence.hibernate with parameters of type LimitedRequest Modifier and Type Method Description <E> @NonNull PageResponse<E>HibernateObjectDao. findByClassIds(Iterable<Long> ids, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super E> filter)Deprecated.since 6.10.0.@NonNull PageResponse<T>HibernateObjectDao. findByClassIdsFiltered(Iterable<Long> ids, LimitedRequest limitedRequest, Predicate<? super T> filter)protected ListVersionedHibernateObjectDao. findNamedQueryStringParams(String queryName, boolean cacheable, LimitedRequest limitedRequest, Object... paramNamesAndValues)Deprecated.since 5.8 Use the equivalent method that uses theHibernateObjectDao.Cacheabilityenum instead of the cacheable boolean flagprotected ListVersionedHibernateObjectDao. findNamedQueryStringParams(String queryName, HibernateObjectDao.Cacheability cacheability, LimitedRequest limitedRequest, Object... paramNamesAndValues)This method here instead of inHibernateObjectDaoin 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 Modifier and Type Method Description PageResponse<ConfluenceUser>ConnectionDao. getFilteredFollowees(ConfluenceUser follower, LimitedRequest limitedRequest, Predicate<ConfluenceUser> predicate)Returns a list of usernames for the users that the specified user is followingPageResponse<ConfluenceUser>ConnectionDao. getFilteredFollowers(ConfluenceUser followee, LimitedRequest limitedRequest, Predicate<ConfluenceUser> predicate)Returns a list of users that are followers of the specified userdefault PageResponse<ConfluenceUser>ConnectionDao. getFollowees(ConfluenceUser follower, LimitedRequest limitedRequest, com.google.common.base.Predicate<ConfluenceUser> predicate)Deprecated.since 7.0.1.default PageResponse<ConfluenceUser>ConnectionDao. getFollowers(ConfluenceUser followee, LimitedRequest limitedRequest, com.google.common.base.Predicate<ConfluenceUser> predicate)Deprecated.since 7.0.1. -
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 Modifier and Type Method Description PageResponse<ConfluenceUser>HibernateConnectionDao. getFilteredFollowees(ConfluenceUser follower, LimitedRequest limitedRequest, Predicate<ConfluenceUser> predicate)Returns a list of usernames for the users that the specified user is followingPageResponse<ConfluenceUser>HibernateConnectionDao. getFilteredFollowers(ConfluenceUser followee, LimitedRequest limitedRequest, Predicate<ConfluenceUser> predicate)Returns a list of users that are followers of the specified user -
Uses of LimitedRequest in com.atlassian.confluence.impl.content
Methods in com.atlassian.confluence.impl.content with parameters of type LimitedRequest Modifier and Type Method Description static <T extends ConfluenceEntityObject>
PageResponse<T>DefaultContentEntityManager. filteredResponseWithCursor(LimitedRequest originalRequest, @Nullable Predicate<? super T> filter, List<T> pages)<T> @NonNull PageResponse<T>DefaultCustomContentManager. findByQueryAndFilter(ContentQuery<T> query, boolean cacheable, LimitedRequest request, Predicate<T> predicate)PageResponse<AbstractPage>DefaultPageManager. getAbstractPages(LocalDate creationDay, ZoneId zone, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super AbstractPage>... filter)@NonNull PageResponse<Page>DefaultPageManager. getAllChildren(Page page, LimitedRequest pageRequest, Depth depth)PageResponse<ContentEntityObject>DefaultContentEntityManager. getByIdsAndFilters(List<ContentId> contentIds, LimitedRequest limitedRequest, Predicate<? super ContentEntityObject>... filters)@NonNull PageResponse<Page>DefaultPageManager. getChildren(Page page, LimitedRequest pageRequest, Depth depth)@NonNull PageResponse<Content>DefaultCustomContentManager. getChildrenOfTypeAndFilter(ContentEntityObject entity, String contentModuleKey, LimitedRequest limitedRequest, Expansions expansions, Depth depth, Predicate<? super CustomContentEntityObject> predicate)This method is used by the Content API to retrieve children of a specific type and filter them by a predicate.@NonNull PageResponse<Page>DefaultPageManager. getDraftChildren(Page page, LimitedRequest pageRequest, Depth depth)@NonNull PageResponse<AbstractPage>DefaultPageManager. getFilteredAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.@NonNull PageResponse<AbstractPage>DefaultPageManager. getFilteredAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.@NonNull PageResponse<AbstractPage>DefaultPageManager. getFilteredAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.@NonNull PageResponse<AbstractPage>DefaultPageManager. getFilteredAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.@NonNull PageResponse<AbstractPage>DefaultPageManager. getFilteredAbstractPagesByTitle(String title, LimitedRequest pageRequest, Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.@NonNull PageResponse<BlogPost>DefaultPageManager. getFilteredBlogPosts(Space space, LimitedRequest pageRequest, Predicate<? super BlogPost>... filters)Deprecated.since 7.0.1.@NonNull PageResponse<Comment>DefaultCommentManager. getFilteredChildren(Comment comment, LimitedRequest pageRequest, Depth depth, Predicate<? super Comment>... predicates)Returns the children of a comment, limited to the pagination requested.@NonNull PageResponse<Comment>DefaultCommentManager. getFilteredContainerComments(long containerId, LimitedRequest pageRequest, Depth depth, Predicate<? super Comment>... predicates)Returns the children comments of a ContentEntityObject, limited to the pagination requested.@NonNull PageResponse<Page>DefaultPageManager. getFilteredPages(LimitedRequest pageRequest, Predicate<? super Page>... filters)Deprecated.since 7.0.1.@NonNull PageResponse<Page>DefaultPageManager. getFilteredPages(Space space, LimitedRequest pageRequest, Predicate<? super Page>... filters)Deprecated.since 7.0.1.@NonNull PageResponse<AbstractPage>DefaultContentEntityManager. getPageAndBlogPostsVersionsLastEditedByUser(com.atlassian.sal.api.user.UserKey userKey, LimitedRequest request)@NonNull PageResponse<AbstractPage>DefaultContentEntityManager. getPageAndBlogPostsVersionsLastEditedByUserIncludingDrafts(@Nullable com.atlassian.sal.api.user.UserKey userKey, LimitedRequest request)Collection<Page>DefaultPageManager. getPermissionPages(Space space, LimitedRequest limitedRequest)@NonNull PageResponse<Page>DefaultPageManager. getTopLevelPages(Space space, LimitedRequest pageRequest)@NonNull PageResponse<VersionHistorySummary>DefaultContentEntityManager. getVersionHistorySummaries(ContentId contentId, LimitedRequest limitedRequest)@NonNull PageResponse<Page>DefaultPageManager. scanFilteredPages(Space space, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super Page>... filter)@NonNull PageResponse<Page>DefaultPageManager. scanFilteredPages(List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super Page>... filter) -
Uses of LimitedRequest in com.atlassian.confluence.impl.labels
Methods in com.atlassian.confluence.impl.labels with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<Label>CachingLabelManager. findGlobalLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)PageResponse<Label>CachingLabelManager. findTeamLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)List<Label>CachingLabelManager. getLabelsInSpace(String key, LimitedRequest pageRequest) -
Uses of LimitedRequest in com.atlassian.confluence.impl.pages.attachments
Methods in com.atlassian.confluence.impl.pages.attachments with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<Attachment>ReadThroughCachingAttachmentManager. getFilteredAttachments(ContentEntityObject content, LimitedRequest pageRequest, Predicate<? super Attachment> filterPredicate)Returns the current attachments under the CEO. -
Uses of LimitedRequest in com.atlassian.confluence.internal
Methods in com.atlassian.confluence.internal with parameters of type LimitedRequest Modifier and Type Method Description default @NonNull PageResponse<ContentEntityObject>ContentEntityManagerInternal. getByIds(List<ContentId> contentIds, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super ContentEntityObject>... filter)Deprecated.since 7.0.1.@NonNull PageResponse<ContentEntityObject>ContentEntityManagerInternal. getByIdsAndFilters(List<ContentId> contentIds, LimitedRequest limitedRequest, Predicate<? super ContentEntityObject>... filter)@NonNull PageResponse<VersionHistorySummary>ContentEntityManagerInternal. getVersionHistorySummaries(ContentId contentId, LimitedRequest limitedRequest)Get a VersionHistorySummary for all previous versions of a ContentEntityObject, list is ordered by Version number descending. -
Uses of LimitedRequest in com.atlassian.confluence.internal.audit.persistence.dao
Methods in com.atlassian.confluence.internal.audit.persistence.dao with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<AuditRecordEntity>AuditRecordDao. getRecords(LimitedRequest request, Instant startDate, Instant endDate, boolean includeSysAdmin, String searchString)Deprecated. -
Uses of LimitedRequest in com.atlassian.confluence.internal.audit.persistence.dao.hibernate
Methods in com.atlassian.confluence.internal.audit.persistence.dao.hibernate with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<AuditRecordEntity>HibernateAuditRecordDao. getRecords(LimitedRequest request, Instant startDate, Instant endDate, boolean includeSysAdmin, String searchString)Deprecated. -
Uses of LimitedRequest in com.atlassian.confluence.internal.labels
Methods in com.atlassian.confluence.internal.labels with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<Label>LabelManagerInternal. findGlobalLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)Returns global-namespaced labels starting with the given string.default PageResponse<Label>LabelManagerInternal. findTeamLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)Returns team-namespaced labels starting with the given string.List<Label>LabelManagerInternal. getLabelsInSpace(String key, LimitedRequest pageRequest)Get all label in Space with pagination -
Uses of LimitedRequest in com.atlassian.confluence.internal.labels.persistence
Methods in com.atlassian.confluence.internal.labels.persistence with parameters of type LimitedRequest Modifier and Type Method Description List<Label>LabelDaoInternal. findByDetailsInSpace(String name, String namespace, String owner, String spaceKey, LimitedRequest limitedRequest)Allow to find detail in Space with pagination -
Uses of LimitedRequest in com.atlassian.confluence.internal.longrunning
Methods in com.atlassian.confluence.internal.longrunning with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<LongTaskStatus>LongRunningTaskManagerInternal. getAllTasks(@Nullable 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 Modifier and Type Method Description default @NonNull PageResponse<AbstractPage>PageManagerInternal. getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.default @NonNull PageResponse<AbstractPage>PageManagerInternal. getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.default @NonNull PageResponse<AbstractPage>PageManagerInternal. getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.PageResponse<AbstractPage>PageManagerInternal. getAbstractPages(LocalDate creationDay, ZoneId zone, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super AbstractPage>... filter)default @NonNull PageResponse<AbstractPage>PageManagerInternal. getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.default @NonNull PageResponse<AbstractPage>PageManagerInternal. getAbstractPagesByTitle(String title, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage>... filter)Deprecated.since 7.0.1.PageResponse<Page>PageManagerInternal. getAllChildren(Page page, LimitedRequest pageRequest, Depth depth)Returns all the children of a page (including drafts), limited to the pagination requesteddefault PageResponse<Attachment>AttachmentManagerInternal. getAttachments(ContentEntityObject content, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> filterPredicate)Deprecated.since 7.0.1.default @NonNull PageResponse<BlogPost>PageManagerInternal. getBlogPosts(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super BlogPost>... filter)Deprecated.since 7.0.1.default @NonNull PageResponse<Comment>CommentManagerInternal. getChildren(Comment comment, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)Deprecated.since 7.0.1.@NonNull PageResponse<Page>PageManagerInternal. getChildren(Page page, LimitedRequest pageRequest, Depth depth)Returns the children of a page which have a status of CURRENT, limited to the pagination requested.default @NonNull PageResponse<Comment>CommentManagerInternal. getContainerComments(long containerId, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)Deprecated.since 7.0.1.@NonNull PageResponse<AbstractPage>PageManagerInternal. getFilteredAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, 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.@NonNull PageResponse<AbstractPage>PageManagerInternal. getFilteredAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super AbstractPage>... filter)Returns all content in the space within any of the specified statuses and content types, limited to the pagination request.@NonNull PageResponse<AbstractPage>PageManagerInternal. getFilteredAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, 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.@NonNull PageResponse<AbstractPage>PageManagerInternal. getFilteredAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, 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.@NonNull PageResponse<AbstractPage>PageManagerInternal. getFilteredAbstractPagesByTitle(String title, LimitedRequest pageRequest, 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. getFilteredAttachments(ContentEntityObject content, LimitedRequest pageRequest, Predicate<? super Attachment> filterPredicate)Returns the current attachments under the CEO.@NonNull PageResponse<BlogPost>PageManagerInternal. getFilteredBlogPosts(Space space, LimitedRequest pageRequest, Predicate<? super BlogPost>... filter)Returns all the current blog posts in the space, limited to the pagination request.@NonNull PageResponse<Comment>CommentManagerInternal. getFilteredChildren(Comment comment, LimitedRequest pageRequest, Depth depth, Predicate<? super Comment>... predicates)Returns the children of a comment, limited to the pagination requested.@NonNull PageResponse<Comment>CommentManagerInternal. getFilteredContainerComments(long containerId, LimitedRequest pageRequest, Depth depth, Predicate<? super Comment>... predicates)Returns the children comments of a ContentEntityObject, limited to the pagination requested.@NonNull PageResponse<Page>PageManagerInternal. getFilteredPages(LimitedRequest pageRequest, Predicate<? super Page>... filter)Returns all the current pages in this instance of confluence, limited to the pagination request.@NonNull PageResponse<Page>PageManagerInternal. getFilteredPages(Space space, LimitedRequest pageRequest, Predicate<? super Page>... filter)Returns all the current pages in the space, limited to the pagination request.default @NonNull PageResponse<Page>PageManagerInternal. getPages(LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page>... filter)Deprecated.since 7.0.1.default @NonNull PageResponse<Page>PageManagerInternal. getPages(Space space, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page>... filter)Deprecated.since 7.0.1.Collection<Page>PageManagerInternal. getPermissionPages(Space space, LimitedRequest limitedRequest)Pagination permission pages for particular Space@NonNull PageResponse<Page>PageManagerInternal. getTopLevelPages(Space space, LimitedRequest pageRequest)Returns the current top-level pages in a space, limited to the pagination requested.default @NonNull PageResponse<Page>PageManagerInternal. scanFilteredPages(Space space, List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super Page>... filter)Returns all pages in the space which has specified content statuses, limited to the pagination request.default @NonNull PageResponse<Page>PageManagerInternal. scanFilteredPages(List<ContentStatus> statuses, LimitedRequest pageRequest, Predicate<? super Page>... filter)Returns all pages with specified content statuses, limited to the pagination request. -
Uses of LimitedRequest in com.atlassian.confluence.internal.pages.persistence
Methods in com.atlassian.confluence.internal.pages.persistence with parameters of type LimitedRequest Modifier and Type Method Description List<AbstractPage>PageDaoInternal. getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest)default PageResponse<AbstractPage>PageDaoInternal. getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.List<AbstractPage>PageDaoInternal. getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest)default PageResponse<AbstractPage>PageDaoInternal. getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.List<AbstractPage>PageDaoInternal. getAbstractPages(com.atlassian.core.util.DateUtils.DateRange creationDate, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>PageDaoInternal. getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest)default PageResponse<AbstractPage>PageDaoInternal. getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.List<AbstractPage>PageDaoInternal. getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest)default PageResponse<AbstractPage>PageDaoInternal. getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.default PageResponse<AbstractPage>PageDaoInternal. getAbstractPages(org.joda.time.DateTime date, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.List<AbstractPage>PageDaoInternal. getAbstractPagesByCreationDate(com.atlassian.core.util.DateUtils.DateRange creationDate, LimitedRequest pageRequest)default PageResponse<AbstractPage>PageDaoInternal. getAbstractPagesByCreationDate(org.joda.time.DateTime date, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.List<AbstractPage>PageDaoInternal. getAbstractPagesByTitle(String title, LimitedRequest pageRequest)default PageResponse<AbstractPage>PageDaoInternal. getAbstractPagesByTitle(String title, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.List<BlogPost>PageDaoInternal. getBlogPosts(Space space, LimitedRequest pageRequest)default PageResponse<BlogPost>PageDaoInternal. getBlogPosts(Space space, LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super BlogPost> filter)Deprecated.since 7.0.1.List<Page>PageDaoInternal. getChildren(Page page, LimitedRequest pageRequest, Depth depth)default PageResponse<Page>PageDaoInternal. getChildren(Page page, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> predicate, Depth depth)Deprecated.since 7.0.1.default PageResponse<Comment>CommentDaoInternal. getFilteredChildren(Comment comment, LimitedRequest pageRequest, Depth depth, Predicate<? super Comment>... predicates)Get the children of a commentdefault PageResponse<Comment>CommentDaoInternal. getFilteredContainerComments(long containerId, LimitedRequest pageRequest, Depth depth, Predicate<? super Comment>... predicates)Get the comments belonging to a containerdefault PageResponse<Attachment>AttachmentDaoInternal. getFilteredLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest pageRequest, Predicate<? super Attachment> predicate)Deprecated, for removal: This API element is subject to removal in a future version.List<Page>PageDaoInternal. getPages(LimitedRequest pageRequest)default PageResponse<Page>PageDaoInternal. getPages(LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super Page> filter)Deprecated.since 7.0.1.List<Page>PageDaoInternal. getPages(Space space, LimitedRequest pageRequest)default PageResponse<Page>PageDaoInternal. getPages(Space space, LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super Page> filter)Deprecated.since 7.0.1.Collection<Page>PageDaoInternal. getPermissionPages(Space space, LimitedRequest limitedRequest)Pagination permission pages for particular SpaceList<ContentEntityObject>AbstractPageDaoInternal. getStaleSharedDrafts(LimitedRequest limitedRequest)Get all stale shared drafts in the database.List<Page>PageDaoInternal. getTopLevelPages(Space space, LimitedRequest limitedRequest)default PageResponse<Page>PageDaoInternal. getTopLevelPages(Space space, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super Page> predicate)Deprecated.since 7.0.1.List<Page>PageDaoInternal. scanFilteredPages(Space space, List<ContentStatus> statuses, LimitedRequest pageRequest)Retrieves a page response of all pages in space with specified content statuses.List<Page>PageDaoInternal. scanFilteredPages(List<ContentStatus> statuses, LimitedRequest pageRequest)Retrieves a page response of all the pages with specified content statuses. -
Uses of LimitedRequest in com.atlassian.confluence.internal.pagination
Methods in com.atlassian.confluence.internal.pagination with parameters of type LimitedRequest Modifier and Type Method Description static <T> PageResponse<T>SubListResponse. from(List<T> list, LimitedRequest request) -
Uses of LimitedRequest in com.atlassian.confluence.internal.persistence
Methods in com.atlassian.confluence.internal.persistence with parameters of type LimitedRequest Modifier and Type Method Description <E> @NonNull PageResponse<E>DelegatingObjectDaoInternal. findByClassIds(Iterable<Long> ids, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super E> filter)Deprecated.since 6.10.0.<E> @NonNull PageResponse<E>ObjectDaoInternal. findByClassIds(Iterable<Long> ids, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super E> filter)Deprecated.since 6.10.0.@NonNull PageResponse<T>DelegatingObjectDaoInternal. findByClassIdsFiltered(Iterable<Long> ids, LimitedRequest limitedRequest, Predicate<? super T> filter)@NonNull PageResponse<T>ObjectDaoInternal. findByClassIdsFiltered(Iterable<Long> ids, LimitedRequest limitedRequest, Predicate<? super T> filter)Find a list of objects from the same persistent class.default PageResponse<SpaceContentEntityObject>ContentEntityObjectDaoInternal. findContentBySpaceIdAndStatusAndFilter(long spaceId, String status, LimitedRequest limitedRequest, Predicate<? super SpaceContentEntityObject> predicate)Retrieve content for a given space with a particular status. -
Uses of LimitedRequest in com.atlassian.confluence.internal.persistence.hibernate
Methods in com.atlassian.confluence.internal.persistence.hibernate with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<SpaceContentEntityObject>AbstractContentEntityObjectHibernateDao. findContentBySpaceIdAndStatus(long spaceId, String status, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super SpaceContentEntityObject> predicate)Deprecated.since 7.0.1.PageResponse<AbstractPage>AbstractContentEntityObjectHibernateDao. getPageAndBlogPostsVersionsLastEditedByUser(com.atlassian.sal.api.user.UserKey userKey, LimitedRequest limitedRequest)PageResponse<AbstractPage>AbstractContentEntityObjectHibernateDao. getPageAndBlogPostsVersionsLastEditedByUserIncludingDrafts(com.atlassian.sal.api.user.UserKey userKey, LimitedRequest limitedRequest)protected <T extends ConfluenceEntityObject>
PageResponse<T>AbstractContentEntityObjectHibernateDao. getPagesByCursor(Function<LimitedRequest,List<T>> searchPages, LimitedRequest originalRequest, Predicate<? super T> filter)PageResponse<ContentEntityObject>AbstractContentEntityObjectHibernateDao. getTrashedContents(String spaceKey, LimitedRequest pageRequest, Predicate<? super ContentEntityObject> filter)PageResponse<VersionHistorySummary>AbstractContentEntityObjectHibernateDao. getVersionHistorySummary(long originalContentId, LimitedRequest request)Method parameters in com.atlassian.confluence.internal.persistence.hibernate with type arguments of type LimitedRequest Modifier and Type Method Description protected <T extends ConfluenceEntityObject>
PageResponse<T>AbstractContentEntityObjectHibernateDao. getPagesByCursor(Function<LimitedRequest,List<T>> searchPages, LimitedRequest originalRequest, Predicate<? super T> filter) -
Uses of LimitedRequest in com.atlassian.confluence.internal.relations
Methods in com.atlassian.confluence.internal.relations with parameters of type LimitedRequest Modifier and Type Method Description @NonNull PageResponse<RelatableEntity>DefaultRelationManager. getSources(RelationQuery request, LimitedRequest pageRequest)@NonNull PageResponse<RelatableEntity>RelationManager. getSources(RelationQuery request, LimitedRequest pageRequest)Fetch all related sources for the entity.@NonNull PageResponse<RelatableEntity>DefaultRelationManager. getTargets(RelationQuery request, LimitedRequest pageRequest)@NonNull PageResponse<RelatableEntity>RelationManager. getTargets(RelationQuery request, LimitedRequest pageRequest)Fetch all related targets for the entity. -
Uses of LimitedRequest in com.atlassian.confluence.internal.spaces
Methods in com.atlassian.confluence.internal.spaces with parameters of type LimitedRequest Modifier and Type Method Description @NonNull PageResponse<Space>SpaceManagerInternal. getSpaces(SpacesQuery query, LimitedRequest limitedRequest, 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.it.api.test.plugin.apiavailable
Methods in com.atlassian.confluence.it.api.test.plugin.apiavailable with parameters of type LimitedRequest Modifier and Type Method Description protected PageResponse<Content>DummyAvailableContentTypeSupport. getChildrenForThisType(CustomContentEntityObject content, LimitedRequest limitedRequest, Expansions expansions, Depth depth) -
Uses of LimitedRequest in com.atlassian.confluence.labels
Methods in com.atlassian.confluence.labels with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<Label>DefaultLabelManager. findGlobalLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)PageResponse<Label>DefaultLabelManager. findTeamLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)List<Label>DefaultLabelManager. getLabelsInSpace(String key, LimitedRequest limitedRequest) -
Uses of LimitedRequest in com.atlassian.confluence.labels.persistence.dao
Methods in com.atlassian.confluence.labels.persistence.dao with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<Label>LabelDao. findGlobalLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)Returns global-namespaced labels starting with the given string.default PageResponse<Label>LabelDao. findTeamLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)Returns team-namespaced labels starting with the given string. -
Uses of LimitedRequest in com.atlassian.confluence.labels.persistence.dao.hibernate
Methods in com.atlassian.confluence.labels.persistence.dao.hibernate with parameters of type LimitedRequest Modifier and Type Method Description List<Label>HibernateLabelDao. findByDetailsInSpace(String name, String namespace, String owner, String spaceKey, LimitedRequest limitedRequest)PageResponse<Label>HibernateLabelDao. findGlobalLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest)PageResponse<Label>HibernateLabelDao. findTeamLabelsByNamePrefix(String namePrefix, LimitedRequest pageRequest) -
Uses of LimitedRequest in com.atlassian.confluence.pages
Methods in com.atlassian.confluence.pages with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<Page>PageManager. getDraftChildren(Page page, LimitedRequest pageRequest, Depth depth)Returns the children of a page which have a status of DRAFT, limited to the pagination requested.PageResponse<Attachment>DefaultAttachmentManager. getFilteredAttachments(ContentEntityObject content, LimitedRequest pageRequest, Predicate<? super Attachment> filterPredicate)PageResponse<Attachment>DelegatorAttachmentManager. getFilteredAttachments(ContentEntityObject content, LimitedRequest pageRequest, Predicate<? super Attachment> filterPredicate)Returns the current attachments under the CEO.PageResponse<Content>DefaultTrashManager. getTrashContents(Space space, LimitedRequest request, Expansion[] expansions)PageResponse<Content>TrashManager. getTrashContents(Space space, LimitedRequest request, Expansion... expansions)Retrieve a subset of the contents of the trash for a particular space. -
Uses of LimitedRequest in com.atlassian.confluence.pages.attachments
Methods in com.atlassian.confluence.pages.attachments with parameters of type LimitedRequest Modifier and Type Method Description List<Attachment>AbstractDelegatingAttachmentDao. getLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest pageRequest) -
Uses of LimitedRequest in com.atlassian.confluence.pages.persistence.dao
Methods in com.atlassian.confluence.pages.persistence.dao with parameters of type LimitedRequest Modifier and Type Method Description <T> @NonNull PageResponse<T>DelegatingPageDao. findByClassIds(Iterable<Long> ids, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super T> filter)Deprecated.@NonNull PageResponse<Page>DelegatingPageDao. findByClassIdsFiltered(Iterable<Long> ids, LimitedRequest limitedRequest, Predicate<? super Page> filter)PageResponse<SpaceContentEntityObject>DelegatingPageDao. findContentBySpaceIdAndStatus(long spaceId, String status, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super SpaceContentEntityObject> predicate)Deprecated.List<AbstractPage>DelegatingPageDao. getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>DelegatingPageDao. getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>DelegatingPageDao. getAbstractPages(com.atlassian.core.util.DateUtils.DateRange date, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>DelegatingPageDao. getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>DelegatingPageDao. getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest)PageResponse<AbstractPage>PageDao. getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.PageResponse<AbstractPage>PageDao. getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.PageResponse<AbstractPage>PageDao. getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.PageResponse<AbstractPage>PageDao. getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.PageResponse<AbstractPage>PageDao. getAbstractPages(org.joda.time.DateTime date, List<ContentStatus> statuses, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.List<AbstractPage>DelegatingPageDao. getAbstractPagesByCreationDate(com.atlassian.core.util.DateUtils.DateRange date, LimitedRequest pageRequest)PageResponse<AbstractPage>PageDao. getAbstractPagesByCreationDate(org.joda.time.DateTime date, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.List<AbstractPage>DelegatingPageDao. getAbstractPagesByTitle(String title, LimitedRequest pageRequest)PageResponse<AbstractPage>PageDao. getAbstractPagesByTitle(String title, LimitedRequest pageRequest, com.google.common.base.Predicate<? super AbstractPage> filter)Deprecated.since 7.0.1.PageResponse<Page>DelegatingPageDao. getAllChildren(Page page, LimitedRequest pageRequest, Depth depth)PageResponse<Page>PageDao. getAllChildren(Page page, LimitedRequest pageRequest, Depth depth)Deprecated, for removal: This API element is subject to removal in a future version.Returns all children of a page (including drafts), limited to the pagination requested.List<BlogPost>DelegatingPageDao. getBlogPosts(Space space, LimitedRequest pageRequest)PageResponse<BlogPost>PageDao. getBlogPosts(Space space, LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super BlogPost> filter)Deprecated.since 7.0.1.List<Comment>CommentDao. getChildren(Comment comment, LimitedRequest pageRequest)default PageResponse<Comment>CommentDao. getChildren(Comment comment, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)Deprecated.since 7.0.1.List<Page>DelegatingPageDao. getChildren(Page page, LimitedRequest pageRequest, Depth depth)Deprecated.PageResponse<Page>PageDao. getChildren(Page page, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Page> predicate, Depth depth)Deprecated.since 7.0.1.List<Comment>CommentDao. getContainerComments(long containerId, LimitedRequest pageRequest)default PageResponse<Comment>CommentDao. getContainerComments(long containerId, LimitedRequest pageRequest, Depth depth, com.google.common.base.Predicate<? super Comment>... predicates)Deprecated.since 7.0.1.PageResponse<Page>DelegatingPageDao. getDraftChildren(Page page, LimitedRequest pageRequest, Depth depth)PageResponse<Page>PageDao. getDraftChildren(Page page, LimitedRequest pageRequest, Depth depth)Deprecated, for removal: This API element is subject to removal in a future version.Returns the children of a page which have a status of DRAFT, limited to the pagination requested.List<Attachment>AttachmentDao. getLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest request)default PageResponse<Attachment>AttachmentDao. getLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest pageRequest, com.google.common.base.Predicate<? super Attachment> predicate)Deprecated.since 7.0.1.PageResponse<AbstractPage>DelegatingPageDao. getPageAndBlogPostsVersionsLastEditedByUser(com.atlassian.sal.api.user.UserKey userKey, LimitedRequest request)PageResponse<AbstractPage>DelegatingPageDao. getPageAndBlogPostsVersionsLastEditedByUserIncludingDrafts(com.atlassian.sal.api.user.UserKey userKey, LimitedRequest request)List<Page>DelegatingPageDao. getPages(LimitedRequest pageRequest)List<Page>DelegatingPageDao. getPages(Space space, LimitedRequest pageRequest)PageResponse<Page>PageDao. getPages(LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super Page> filter)Deprecated.since 7.0.1.PageResponse<Page>PageDao. getPages(Space space, LimitedRequest pageRequest, @Nullable com.google.common.base.Predicate<? super Page> filter)Deprecated.since 7.0.1.Collection<Page>DelegatingPageDao. getPermissionPages(Space space, LimitedRequest requeste)List<Page>DelegatingPageDao. getTopLevelPages(Space space, LimitedRequest limitedRequest)PageResponse<Page>PageDao. getTopLevelPages(Space space, LimitedRequest limitedRequest, com.google.common.base.Predicate<? super Page> predicate)Deprecated.since 7.0.1.PageResponse<VersionHistorySummary>DelegatingPageDao. getVersionHistorySummary(long originalContentId, LimitedRequest request)@NonNull List<Page>DelegatingPageDao. scanFilteredPages(Space space, List<ContentStatus> statuses, LimitedRequest pageRequest)@NonNull List<Page>DelegatingPageDao. scanFilteredPages(List<ContentStatus> statuses, LimitedRequest pageRequest) -
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 Modifier and Type Method Description List<AbstractPage>HibernatePageDao. getAbstractPages(Space space, String title, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>HibernatePageDao. getAbstractPages(Space space, List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>HibernatePageDao. getAbstractPages(com.atlassian.core.util.DateUtils.DateRange range, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>HibernatePageDao. getAbstractPages(String title, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>HibernatePageDao. getAbstractPages(List<ContentType> contentTypes, List<ContentStatus> statuses, LimitedRequest pageRequest)List<AbstractPage>HibernatePageDao. getAbstractPagesByCreationDate(com.atlassian.core.util.DateUtils.DateRange range, LimitedRequest pageRequest)List<AbstractPage>HibernatePageDao. getAbstractPagesByTitle(String title, LimitedRequest limitedRequest)PageResponse<Page>HibernatePageDao. getAllChildren(Page page, LimitedRequest pageRequest, Depth depth)List<BlogPost>HibernatePageDao. getBlogPosts(Space space, LimitedRequest limitedRequest)List<Comment>HibernateCommentDao. getChildren(Comment comment, LimitedRequest pageRequest)List<Page>HibernatePageDao. getChildren(Page page, LimitedRequest pageRequest, Depth depth)List<Comment>HibernateCommentDao. getContainerComments(long containerId, LimitedRequest pageRequest)PageResponse<Page>HibernatePageDao. getDraftChildren(Page page, LimitedRequest pageRequest, Depth depth)ListAbstractHibernateAttachmentDao. getLatestVersionsOfAttachments(ContentEntityObject ceo, LimitedRequest request)List<Page>HibernatePageDao. getPages(LimitedRequest pageRequest)List<Page>HibernatePageDao. getPages(Space space, LimitedRequest pageRequest)Collection<Page>HibernatePageDao. getPermissionPages(Space space, LimitedRequest limitedRequest)List<ContentEntityObject>HibernateAbstractPageDao. getStaleSharedDrafts(LimitedRequest limitedRequest)List<Page>HibernatePageDao. getTopLevelPages(Space space, LimitedRequest limitedRequest)List<Page>HibernatePageDao. scanFilteredPages(Space space, List<ContentStatus> statuses, LimitedRequest pageRequest)List<Page>HibernatePageDao. scanFilteredPages(List<ContentStatus> statuses, LimitedRequest pageRequest) -
Uses of LimitedRequest in com.atlassian.confluence.spaces
Methods in com.atlassian.confluence.spaces with parameters of type LimitedRequest Modifier and Type Method Description @NonNull PageResponse<Space>DefaultSpaceManager. getSpaces(SpacesQuery query, LimitedRequest limitedRequest, Predicate<? super Space>... filter) -
Uses of LimitedRequest in com.atlassian.confluence.user
Methods in com.atlassian.confluence.user with parameters of type LimitedRequest Modifier and Type Method Description @NonNull PageResponse<ConfluenceUser>ConfluenceUserResolver. getUsers(LimitedRequest limitedRequest)Get fully backed (active or disabled) Confluence Users.PageResponse<ConfluenceUser>DefaultUserAccessor. getUsers(LimitedRequest limitedRequest)@NonNull PageResponse<ConfluenceUser>ReadOnlyUserAccessor. getUsers(LimitedRequest limitedRequest) -
Uses of LimitedRequest in com.atlassian.confluence.util.longrunning
Methods in com.atlassian.confluence.util.longrunning with parameters of type LimitedRequest Modifier and Type Method Description PageResponse<LongTaskStatus>DefaultLongRunningTaskManager. getAllTasks(@Nullable ConfluenceUser asUser, LimitedRequest request)
-