| Modifier and Type | Method and Description |
|---|---|
static ContentOrder |
ContentOrder.parse(String str)
Parse a string representation of a
ContentOrder from the field path and direction. |
| Modifier and Type | Method and Description |
|---|---|
ContentService.ContentFetcher |
ContentService.ContentFetcher.orderBy(ContentOrder orderBy) |
| Modifier and Type | Method and Description |
|---|---|
PageResponse<AbstractPage> |
PageManagerInternal.getAbstractPages(org.joda.time.DateTime date,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
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,
ContentOrder orderBy,
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,
ContentOrder orderBy,
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,
ContentOrder orderBy,
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,
ContentOrder orderBy,
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.
|
| Modifier and Type | Method and Description |
|---|---|
PageResponse<AbstractPage> |
DefaultPageManager.getAbstractPages(org.joda.time.DateTime date,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
com.google.common.base.Predicate<? super AbstractPage>... filters) |
PageResponse<AbstractPage> |
DefaultPageManager.getAbstractPages(List<ContentType> contentTypes,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
com.google.common.base.Predicate<? super AbstractPage>... filters) |
PageResponse<AbstractPage> |
DefaultPageManager.getAbstractPages(Space space,
List<ContentType> contentTypes,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
com.google.common.base.Predicate<? super AbstractPage>... filters) |
PageResponse<AbstractPage> |
DefaultPageManager.getAbstractPages(Space space,
String title,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
com.google.common.base.Predicate<? super AbstractPage>... filters) |
PageResponse<AbstractPage> |
DefaultPageManager.getAbstractPages(String title,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
com.google.common.base.Predicate<? super AbstractPage>... filters) |
| Modifier and Type | Method and Description |
|---|---|
List<AbstractPage> |
PageDao.getAbstractPages(org.joda.time.DateTime date,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy)
Returns the abstract pages created on the given date and are in the , that also match the given filter, limited to the page request.
|
default PageResponse<AbstractPage> |
PageDao.getAbstractPages(org.joda.time.DateTime date,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
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.
|
List<AbstractPage> |
PageDao.getAbstractPages(List<ContentType> contentTypes,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy)
Retrieves a page response of all pages found in this instance of Confluence, within any of the given statuses.
|
default PageResponse<AbstractPage> |
PageDao.getAbstractPages(List<ContentType> contentTypes,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
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.
|
List<AbstractPage> |
PageDao.getAbstractPages(Space space,
List<ContentType> contentTypes,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy)
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.
|
default PageResponse<AbstractPage> |
PageDao.getAbstractPages(Space space,
List<ContentType> contentTypes,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
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.
|
List<AbstractPage> |
PageDao.getAbstractPages(Space space,
String title,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy)
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.
|
default PageResponse<AbstractPage> |
PageDao.getAbstractPages(Space space,
String title,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
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.
|
List<AbstractPage> |
PageDao.getAbstractPages(String title,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy)
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.
|
default PageResponse<AbstractPage> |
PageDao.getAbstractPages(String title,
List<ContentStatus> statuses,
LimitedRequest pageRequest,
ContentOrder orderBy,
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.
|
| Modifier and Type | Field and Description |
|---|---|
protected ContentOrder |
AbstractRemoteContentService.AbstractRemoteContentFinder.orderBy |
| Modifier and Type | Method and Description |
|---|---|
RemoteContentService.RemoteContentFetcher |
RemoteContentService.RemoteContentFetcher.orderBy(ContentOrder orderBy) |
RemoteContentService.RemoteContentFetcher |
AbstractRemoteContentService.AbstractRemoteContentFinder.orderBy(ContentOrder orderBy) |
Copyright © 2003–2017 Atlassian. All rights reserved.