Uses of Class
com.atlassian.confluence.api.model.content.ContentStatus

Packages that use ContentStatus
com.atlassian.confluence.api.impl.service.content   
com.atlassian.confluence.api.model.content   
com.atlassian.confluence.api.service.content   
com.atlassian.confluence.internal.pages   
com.atlassian.confluence.pages   
com.atlassian.confluence.pages.persistence.dao   
com.atlassian.confluence.pages.persistence.dao.hibernate   
com.atlassian.confluence.plugins.restapi.resources   
com.atlassian.confluence.rest.client   
 

Uses of ContentStatus in com.atlassian.confluence.api.impl.service.content
 

Method parameters in com.atlassian.confluence.api.impl.service.content with type arguments of type ContentStatus
 Content ContentServiceImpl.buildContent(ContentEntityObject entity, List<ContentStatus> statuses, Expansion... expansions)
           
 

Uses of ContentStatus in com.atlassian.confluence.api.model.content
 

Fields in com.atlassian.confluence.api.model.content declared as ContentStatus
static ContentStatus ContentStatus.CURRENT
          The default state of content ready to be viewed and edited.
static ContentStatus ContentStatus.HISTORICAL
          The state of content that is not at its latest version
static ContentStatus ContentStatus.TRASHED
          The state of content that has been trashed but not yet purged from the system.
 

Fields in com.atlassian.confluence.api.model.content with type parameters of type ContentStatus
static List<ContentStatus> ContentStatus.BUILT_IN
           
 

Methods in com.atlassian.confluence.api.model.content that return ContentStatus
 ContentStatus Content.getStatus()
           
static ContentStatus ContentStatus.valueOf(String str)
          Return the ContentType for the given type string.
 

Methods in com.atlassian.confluence.api.model.content with parameters of type ContentStatus
 Content.ContentBuilder Content.ContentBuilder.status(ContentStatus status)
           
 

Uses of ContentStatus in com.atlassian.confluence.api.service.content
 

Methods in com.atlassian.confluence.api.service.content with parameters of type ContentStatus
 ContentService.ContentFinder ContentService.ParameterContentFinder.withStatus(ContentStatus... status)
          Restrict the fetched content to that matching the given statuses.
 

Method parameters in com.atlassian.confluence.api.service.content with type arguments of type ContentStatus
 ContentService.ContentFinder ContentService.ParameterContentFinder.withStatus(Iterable<ContentStatus> statuses)
          Restrict the fetched content to that matching the given statuses.
 

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

Method parameters in com.atlassian.confluence.internal.pages with type arguments of type ContentStatus
 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.
 

Uses of ContentStatus in com.atlassian.confluence.pages
 

Method parameters in com.atlassian.confluence.pages with type arguments of type ContentStatus
 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)
           
 

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

Method parameters in com.atlassian.confluence.pages.persistence.dao with type arguments of type ContentStatus
 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.
 

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

Method parameters in com.atlassian.confluence.pages.persistence.dao.hibernate with type arguments of type ContentStatus
 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)
           
 

Uses of ContentStatus in com.atlassian.confluence.plugins.restapi.resources
 

Methods in com.atlassian.confluence.plugins.restapi.resources with parameters of type ContentStatus
 javax.ws.rs.core.Response ContentResource.delete(ContentId contentId, ContentStatus status)
          Trashes or purges a piece of Content, based on its ContentType and ContentStatus.
 

Method parameters in com.atlassian.confluence.plugins.restapi.resources with type arguments of type ContentStatus
 PageResponse<Content> ContentResource.getContent(String type, String spaceKey, String title, List<ContentStatus> statuses, String postingDay, String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
          Returns a paginated list of Content.
 Content ContentResource.getContentById(ContentId id, List<ContentStatus> statuses, Integer version, String expand)
          Returns a piece of Content.
 

Uses of ContentStatus in com.atlassian.confluence.rest.client
 

Methods in com.atlassian.confluence.rest.client with parameters of type ContentStatus
 RemoteContentService.RemoteContentFinder RemoteContentServiceImpl.RemoteContentFinderImpl.withStatus(ContentStatus... status)
           
 RemoteContentService.RemoteContentFinder RemoteContentService.RemoteContentFinder.withStatus(ContentStatus... status)
           
 



Copyright © 2003–2015 Atlassian. All rights reserved.