Uses of Class
com.atlassian.confluence.content.ContentQuery
-
-
Uses of ContentQuery in com.atlassian.confluence.content
Methods in com.atlassian.confluence.content with parameters of type ContentQuery 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.<T> @NonNull Iterator<T>CustomContentManager. findByQuery(ContentQuery<T> query, int offset, int maxResults)Get the results of a query for CustomContentEntityObjectsdefault <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.7<T> @Nullable TCustomContentManager. findFirstObjectByQuery(ContentQuery<T> query)Find the first result of a query for CustomContentEntityObjects.<T> @NonNull List<T>CustomContentManager. queryForList(ContentQuery<T> query)Get the results of a query for CustomContentEntityObjects<T> @NonNull List<T>CustomContentManager. queryForList(ContentQuery<T> query, int offset, int maxResults)Get the results of a query for CustomContentEntityObjects -
Uses of ContentQuery in com.atlassian.confluence.content.persistence
Methods in com.atlassian.confluence.content.persistence with parameters of type ContentQuery 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.<T> Iterator<T>CustomContentDao. findByQuery(ContentQuery<T> query, int offset, int maxResults)default <T> PageResponse<T>CustomContentDao. findByQueryAndFilter(ContentQuery<T> query, boolean cacheable, LimitedRequest request, Predicate<T> predicate)Deprecated.<T> List<T>CustomContentDao. queryForList(ContentQuery<T> query)It is strongly recommended that theCustomContentDao.queryForList(ContentQuery, int, int)method be used in preference to this one, as this method does not apply pagination limits to the result set.<T> List<T>CustomContentDao. queryForList(ContentQuery<T> query, int offset, int maxResults) -
Uses of ContentQuery in com.atlassian.confluence.content.persistence.hibernate
Methods in com.atlassian.confluence.content.persistence.hibernate with parameters of type ContentQuery Modifier and Type Method Description <T> List<T>PluginContentHibernateDao. findByQuery(ContentQuery<T> contentQuery, boolean cacheable, LimitedRequest limitedRequest)<T> Iterator<T>PluginContentHibernateDao. findByQuery(ContentQuery<T> contentQuery, int offset, int maxResults)<T,R>
RPluginContentHibernateDao. query(ContentQuery<T> contentQuery, int offset, int maxResults, Function<org.hibernate.query.Query<T>,R> f)<T> List<T>PluginContentHibernateDao. queryForList(ContentQuery<T> contentQuery)<T> List<T>PluginContentHibernateDao. queryForList(ContentQuery<T> contentQuery, int offset, int maxResults) -
Uses of ContentQuery in com.atlassian.confluence.impl.content
Methods in com.atlassian.confluence.impl.content with parameters of type ContentQuery Modifier and Type Method Description <T> @NonNull Iterator<T>DefaultCustomContentManager. findByQuery(ContentQuery<T> query, int offset, int maxResults)<T> @NonNull PageResponse<T>DefaultCustomContentManager. findByQueryAndFilter(ContentQuery<T> query, boolean cacheable, LimitedRequest request, Predicate<T> predicate)<T> @Nullable TDefaultCustomContentManager. findFirstObjectByQuery(ContentQuery<T> query)<T> @NonNull List<T>DefaultCustomContentManager. queryForList(ContentQuery<T> query)It is strongly recommended that theDefaultCustomContentManager.queryForList(ContentQuery, int, int)method be used in preference to this one, as this method does not apply pagination limits to the result set.<T> @NonNull List<T>DefaultCustomContentManager. queryForList(ContentQuery<T> query, int offset, int maxResults) -
Uses of ContentQuery in com.atlassian.confluence.plugins.contentproperty
Methods in com.atlassian.confluence.plugins.contentproperty that return ContentQuery Modifier and Type Method Description static ContentQuery<CustomContentEntityObject>JsonPropertyQueryFactory. findAllByContentId(long contentId)static ContentQuery<CustomContentEntityObject>JsonPropertyQueryFactory. findAllByContentIdsAndKeys(List<Long> contentIds, List<String> keys)static ContentQuery<CustomContentEntityObject>JsonPropertyQueryFactory. findAllBySpaceKey(String spaceKey)static ContentQuery<CustomContentEntityObject>JsonPropertyQueryFactory. findByContentIdAndKey(long contentId, String key)static ContentQuery<CustomContentEntityObject>JsonPropertyQueryFactory. findBySpaceKeyAndKey(String spaceKey, String key) -
Uses of ContentQuery in com.atlassian.confluence.test.rpc
Methods in com.atlassian.confluence.test.rpc that return ContentQuery Modifier and Type Method Description static ContentQuery<String>FuncTestQueryFactory. findAllCustomContentPluginKey()
-