Uses of Class
com.atlassian.confluence.pages.Page

Packages that use Page
com.atlassian.confluence.content.service.page   
com.atlassian.confluence.core   
com.atlassian.confluence.event.events.content.page   
com.atlassian.confluence.importexport   
com.atlassian.confluence.importexport.impl   
com.atlassian.confluence.mail.reports   
com.atlassian.confluence.pages   
com.atlassian.confluence.pages.actions   
com.atlassian.confluence.pages.persistence.dao   
com.atlassian.confluence.pages.persistence.dao.hibernate   
com.atlassian.confluence.spaces   
com.atlassian.confluence.spaces.actions   
com.atlassian.confluence.util.breadcrumbs   
 

Uses of Page in com.atlassian.confluence.content.service.page
 

Methods in com.atlassian.confluence.content.service.page that return Page
 Page PageLocator.getPage()
           
 Page IdPageLocator.getPage()
           
 

Uses of Page in com.atlassian.confluence.core
 

Methods in com.atlassian.confluence.core that return types with arguments of type Page
 List<Page> DefaultContentPermissionManager.getPermittedChildren(Page page, User user)
          Returns a list of Page objects that are direct children of the passed in page.
 List<Page> ContentPermissionManager.getPermittedChildren(Page page, User user)
           
 

Methods in com.atlassian.confluence.core with parameters of type Page
 List DefaultContentPermissionManager.getInheritedViewContentPermissions(Page page)
          Deprecated. use ContentPermissionManager.getInheritedContentPermissionSets(ContentEntityObject)
 List ContentPermissionManager.getInheritedViewContentPermissions(Page page)
          only get inherited permissions that are restrict the viewing of pages
 List<Page> DefaultContentPermissionManager.getPermittedChildren(Page page, User user)
          Returns a list of Page objects that are direct children of the passed in page.
 List<Page> ContentPermissionManager.getPermittedChildren(Page page, User user)
           
 Set DefaultContentPermissionManager.getViewContentPermissions(Page page)
           
 Set ContentPermissionManager.getViewContentPermissions(Page page)
          Get view permissions on this page and its ancestors.
 

Uses of Page in com.atlassian.confluence.event.events.content.page
 

Methods in com.atlassian.confluence.event.events.content.page that return Page
 Page PageMoveEvent.PageReorder.getMovedPage()
           
 Page PageMoveEvent.getNewParentpage()
           
 Page PageMoveEvent.getOldParentPage()
           
 Page PageEvent.getPage()
           
 

Constructors in com.atlassian.confluence.event.events.content.page with parameters of type Page
PageChildrenReorderEvent(Object src, Page parentPage, List oldSortedChildren, List newSortedChildren, User user)
           
PageCreateEvent(Object src, Page page)
           
PageEvent(Object src, Page page)
           
PageMoveEvent.PageReorder(Page movedPage, Space oldSpace, Page oldParent, Integer oldPosition)
           
PageMoveEvent(Object src, Page movedPage, Page oldParentPage, Space oldSpace, User user, boolean moveChildren)
          Deprecated. since 2.9 Use PageMoveEvent.PageMoveEvent(Object, Page, Space, Page, Integer, User) instead
PageMoveEvent(Object src, Page movedPage, Space oldSpace, Page oldParentPage, Integer oldPosition, User user)
           
PageRemoveEvent(Object src, Page removedPage)
           
PageRestoreEvent(Object src, Page page)
           
PageTrashedEvent(Object src, Page trashedPage, User trasher)
           
PageUpdateEvent(Object src, Page updatedPage)
           
PageUpdateEvent(Object src, Page updatedPage, AbstractPage originalPage, boolean minorEdit)
           
PageUpdateEvent(Object src, Page updatedPage, Page originalPage)
           
PageViewEvent(Object src, Page page)
           
 

Uses of Page in com.atlassian.confluence.importexport
 

Methods in com.atlassian.confluence.importexport with parameters of type Page
 boolean ExportContext.isPageInExport(Page page, PageManager pageManager)
           
 boolean DefaultExportContext.isPageInExport(Page page, PageManager pageManager)
           
 

Uses of Page in com.atlassian.confluence.importexport.impl
 

Methods in com.atlassian.confluence.importexport.impl with parameters of type Page
protected  void HtmlExporter.exportPage(Page page, String baseExportPath)
          Export page exports either a single page or, if context.exportChildren is set, the whole page hierarchy.
protected  void AbstractRendererExporterImpl.exportPage(Page page, String baseExportPath)
           
 

Uses of Page in com.atlassian.confluence.mail.reports
 

Methods in com.atlassian.confluence.mail.reports with parameters of type Page
 void ChangeDigestReport.addPage(Page page)
           
 

Uses of Page in com.atlassian.confluence.pages
 

Methods in com.atlassian.confluence.pages that return Page
 Page ContentNode.getPage()
           
 Page DefaultPageManager.getPage(long id)
           
 Page PageManager.getPage(long id)
          Retrieve the page with the given content ID.
 Page DefaultPageManager.getPage(String spaceKey, String pageTitle)
           
 Page PageManager.getPage(String spaceKey, String pageTitle)
          Retrieve the latest version of a page by its space key and title.
 Page DefaultPageManager.getPage(String spaceKey, String pageTitle, boolean eagerLoadComments)
           
 Page PageManager.getPage(String spaceKey, String pageTitle, boolean eagerLoadComments)
          Retrieve the latest version of a page by its space key and title.
 Page Page.getParent()
           
 

Methods in com.atlassian.confluence.pages that return types with arguments of type Page
 List<Page> Page.getAncestors()
           
 List<Page> Page.getChildren()
           
 List<Page> Page.getDescendents()
           
 List<Page> DefaultPageManager.getPossibleRedirectsForSpace(Space space, String pageTitle)
           
 List<Page> Page.getSortedChildren()
           
 List<Page> DefaultPageManager.getTopLevelPages(Space space)
           
 

Methods in com.atlassian.confluence.pages with parameters of type Page
 void Page.addChild(Page child)
           
 void DefaultPageManager.appendPage(Page sourcePage, Page targetParent)
          Deprecated. since 2.9 use DefaultPageManager.movePageAsChild(Page, Page)
 void PageManager.appendPage(Page sourcePage, Page targetPage)
          Deprecated. since 2.9 use PageManager.movePageAsChild(Page, Page)
 int ChildPositionComparator.compare(Page page0, Page page1)
          Deprecated.  
 Collection DefaultPageManager.getDescendentIds(Page page)
           
 Collection PageManager.getDescendentIds(Page page)
           
 List DefaultPageManager.getDescendents(Page page)
           
 List PageManager.getDescendents(Page page)
           
 void DefaultPageManager.movePage(Page page, Page refPage, int offset)
          Deprecated. since 2.9 use DefaultPageManager.movePageBefore(Page, Page) and DefaultPageManager.movePageAfter(Page, Page)
 void PageManager.movePage(Page sourcePage, Page targetPage, int offset)
          Deprecated. since 2.9 use PageManager.movePageAfter(Page, Page) or PageManager.movePageBefore(Page, Page)
 void DefaultPageManager.movePage(Page sourcePage, Space targetSpace)
          Deprecated. since 2.9 use DefaultPageManager.movePageToTopLevel(Page, Space)
 void PageManager.movePage(Page sourcePage, Space targetSpace)
          Deprecated. since 2.9 use PageManager.movePageToTopLevel(Page, Space)
 void DefaultPageManager.movePageAfter(Page page, Page refPage)
           
 void PageManager.movePageAfter(Page page, Page refPage)
          Move the provided page (first argument) after the reference page (second argument).
 void DefaultPageManager.movePageAsChild(Page page, Page newParent)
          Move the source page to the end of targetPage's children list.
 void PageManager.movePageAsChild(Page page, Page refPage)
          Move the provided page (first argument) as a child of the reference page (second argument).
 void DefaultPageManager.movePageBefore(Page page, Page refPage)
           
 void PageManager.movePageBefore(Page page, Page refPage)
          Move the provided page (first argument) before the reference page (second argument).
 void DefaultPageManager.movePageToTopLevel(Page page, Space space)
           
 void PageManager.movePageToTopLevel(Page page, Space space)
          Move a page to the top level of targetSpace.
 void Page.removeChild(Page child)
           
 void DefaultPageManager.removePageFromAncestorCollections(Page page)
           
 void PageManager.removePageFromAncestorCollections(Page page)
          Removes the page and its ancestors from the ancestor collection of all descendants.
 void DefaultPageManager.revertChildPageOrder(Page parentPage)
           
 void PageManager.revertChildPageOrder(Page parentPage)
          Removes manual ordering of child pages.
 void DefaultPageManager.setChildPageOrder(Page parentPage, List<Long> childIds)
           
 void PageManager.setChildPageOrder(Page parentPage, List<Long> childIds)
          Sets ordering of child pages for a supplied page, based on a map of child ids to positions.
 void ContentNode.setPage(Page page)
           
 void Page.setParent(Page parent)
          Deprecated. Do not call this method. It exists solely for hibernate to use. Use #setParentPage instead. I would have made this method private, but CGLIB was complaining.
 void Page.setParentPage(Page parent)
          Public setter that makes sure that the parent page is valid
 void DefaultPageManager.updatePageInAncestorCollections(Page page, Page newParent)
           
 void PageManager.updatePageInAncestorCollections(Page page, Page parentPage)
          Updates the ancestors of a page and all it's descendant pages with the new parent page and its ancestors.
 

Method parameters in com.atlassian.confluence.pages with type arguments of type Page
 void Page.setAncestors(List<Page> ancestors)
           
 void Page.setChildren(List<Page> children)
           
 

Constructors in com.atlassian.confluence.pages with parameters of type Page
ContentNode(Page page)
           
 

Uses of Page in com.atlassian.confluence.pages.actions
 

Methods in com.atlassian.confluence.pages.actions that return Page
 Page AbstractCreatePageAction.getFromPage()
           
 Page CopyPageAction.getPageToCopy()
           
 Page AbstractCreatePageAction.getPageToReturnToOnCancel()
           
 Page AbstractCreateAndEditPageAction.getParentPage()
           
 Page ViewPreviousVersionsAction.getPreviousPage(Page page)
           
 

Methods in com.atlassian.confluence.pages.actions with parameters of type Page
 Page ViewPreviousVersionsAction.getPreviousPage(Page page)
           
 

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

Methods in com.atlassian.confluence.pages.persistence.dao that return Page
 Page PageDao.getPage(String spaceKey, String pageTitle)
           
 Page PageDao.getPage(String spaceKey, String pageTitle, boolean eagerLoadComments)
          Get the page by space key and title, and perform an eager load of the comments and their children.
 Page PageDao.getPageById(long id)
           
 

Methods in com.atlassian.confluence.pages.persistence.dao that return types with arguments of type Page
 List<Page> PageDao.getTopLevelPages(Space space)
           
 

Methods in com.atlassian.confluence.pages.persistence.dao with parameters of type Page
 List PageDao.getDescendentIds(Page page)
           
 List PageDao.getDescendents(Page page)
           
 

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

Methods in com.atlassian.confluence.pages.persistence.dao.hibernate that return Page
 Page HibernatePageDao.getPage(String spaceKey, String pageTitle)
           
 Page HibernatePageDao.getPage(String spaceKey, String pageTitle, boolean eagerLoadComments)
           
 Page HibernatePageDao.getPageById(long id)
           
 

Methods in com.atlassian.confluence.pages.persistence.dao.hibernate that return types with arguments of type Page
 List<Page> HibernatePageDao.getTopLevelPages(Space space)
           
 

Methods in com.atlassian.confluence.pages.persistence.dao.hibernate with parameters of type Page
 List HibernatePageDao.getDescendentIds(Page page)
           
 List HibernatePageDao.getDescendents(Page page)
           
 

Uses of Page in com.atlassian.confluence.spaces
 

Methods in com.atlassian.confluence.spaces that return Page
 Page Space.getHomePage()
           
 

Methods in com.atlassian.confluence.spaces with parameters of type Page
 void DefaultSpaceManager.moveHierarchy(Page topPage, Page newParentPage, Space newSpace, User user, boolean moveChildren, List pagesToIndex)
          Deprecated. since 2.9 use PageManager.movePage(Page, Space) or PageManager.movePage(Page, Page, int) instead
 void SpaceManager.moveHierarchy(Page topPage, Page newParentPage, Space newSpace, User user, boolean moveChildren, List pagesToIndex)
          Deprecated. since 2.9 use PageManager.movePage(Page, Space) or PageManager.movePage(Page, Page, int) instead
 void Space.setHomePage(Page homePage)
           
 

Uses of Page in com.atlassian.confluence.spaces.actions
 

Methods in com.atlassian.confluence.spaces.actions that return Page
 Page ViewSpaceAction.getPage()
           
 

Methods in com.atlassian.confluence.spaces.actions with parameters of type Page
 String ViewSpaceAction.getPageXHtmlContent(Page page)
           
 

Uses of Page in com.atlassian.confluence.util.breadcrumbs
 

Constructors in com.atlassian.confluence.util.breadcrumbs with parameters of type Page
PageBreadcrumb(Page page)
           
 



Confluence is developed by Atlassian Pty Ltd.