Uses of Interface
com.atlassian.confluence.api.impl.pagination.PaginationQuery
-
Packages that use PaginationQuery Package Description com.atlassian.confluence.api.impl.pagination com.atlassian.confluence.follow com.atlassian.confluence.internal.follow -
-
Uses of PaginationQuery in com.atlassian.confluence.api.impl.pagination
Classes in com.atlassian.confluence.api.impl.pagination that implement PaginationQuery Modifier and Type Class Description class
PaginationQueryImpl<F,T>
Methods in com.atlassian.confluence.api.impl.pagination that return PaginationQuery Modifier and Type Method Description static <F,T>
PaginationQuery<F,T>PaginationQueryImpl. createNewQuery(Function<F,T> modelConverter)
default PaginationQuery<F,T>
PaginationQuery. createWithModelConverter(Function<F,T> modelConverter)
Specifies the model converter Function that should be applied to results.default PaginationQuery<F,T>
PaginationQuery. createWithPredicate(Predicate<F> predicate)
Adds a Predicate used to filter the raw database type results.static <T> PaginationQuery<T,T>
PaginationQueryImpl. newIdentityQuery()
Constructs a PaginationQuery that does not perform model conversion.static <T> PaginationQuery<T,T>
PaginationQueryImpl. newIdentityQuery(Class<T> clazz)
An alternate form of newIdentityQuery that accepts a Class to piggy-back type token T from.static <F,T>
PaginationQuery<F,T>PaginationQueryImpl. newQuery()
Constructs a new PaginationQuery with no predicates or model converter.static <F,T>
PaginationQuery<F,T>PaginationQueryImpl. newQuery(com.google.common.base.Function<F,T> modelConverter)
Deprecated.since 7.0.1.PaginationQuery<F,T>
PaginationQuery. withModelConverter(com.google.common.base.Function<F,T> modelConverter)
Deprecated.since 7.0.1.PaginationQuery<F,T>
PaginationQueryImpl. withModelConverter(com.google.common.base.Function<F,T> modelConverter)
Deprecated.since 7.0.1.PaginationQuery<F,T>
PaginationQuery. withPredicate(com.google.common.base.Predicate<F> predicate)
Deprecated.since 7.0.1.PaginationQuery<F,T>
PaginationQueryImpl. withPredicate(com.google.common.base.Predicate<F> predicate)
Deprecated.since 7.0.1. -
Uses of PaginationQuery in com.atlassian.confluence.follow
Methods in com.atlassian.confluence.follow with parameters of type PaginationQuery Modifier and Type Method Description <T> Paginated<T>
DefaultFollowManager. getFollowers(ConfluenceUser user, PaginationQuery<ConfluenceUser,T> query)
<T> Paginated<T>
DefaultFollowManager. getFollowing(ConfluenceUser user, PaginationQuery<ConfluenceUser,T> query)
-
Uses of PaginationQuery in com.atlassian.confluence.internal.follow
Methods in com.atlassian.confluence.internal.follow with parameters of type PaginationQuery Modifier and Type Method Description <T> Paginated<T>
FollowManagerInternal. getFollowers(ConfluenceUser user, PaginationQuery<ConfluenceUser,T> query)
Deprecated.Constructs a new Paginated response containing the followers of specified user, limited and converted by the given PaginationQuery.<T> Paginated<T>
FollowManagerInternal. getFollowing(ConfluenceUser user, PaginationQuery<ConfluenceUser,T> query)
Deprecated.Returns a list of users that the specified user is following, limited and converted by the given PaginationQuery.
-