Uses of Interface
com.atlassian.confluence.content.service.page.PageLocator
-
Packages that use PageLocator Package Description com.atlassian.confluence.content.service com.atlassian.confluence.content.service.page -
-
Uses of PageLocator in com.atlassian.confluence.content.service
Methods in com.atlassian.confluence.content.service that return PageLocator Modifier and Type Method Description PageLocator
DefaultPageService. getIdPageLocator(long pageId)
PageLocator
PageService. getIdPageLocator(long pageId)
Creates a page locator that can locate a page based on an id.PageLocator
DefaultPageService. getPageVersionLocator(long pageId, int version)
PageLocator
PageService. getPageVersionLocator(long pageId, int version)
PageLocator
DefaultPageService. getTitleAndSpaceKeyPageLocator(String spaceKey, String title)
PageLocator
PageService. getTitleAndSpaceKeyPageLocator(String spaceKey, String title)
Creates a page locator that can locate a page based on a space key and title.Methods in com.atlassian.confluence.content.service with parameters of type PageLocator Modifier and Type Method Description ServiceCommand
DefaultPageService. newDeletePageCommand(PageLocator pageLocator)
ServiceCommand
PageService. newDeletePageCommand(PageLocator pageLocator)
Retrieve a command to remove an existing pageMovePageCommand
DefaultPageService. newMovePageCommand(PageLocator sourcePageLocator, PageLocator targetPageLocator, String position)
MovePageCommand
DefaultPageService. newMovePageCommand(PageLocator sourcePageLocator, SpaceLocator targetSpaceLocator)
MovePageCommand
PageService. newMovePageCommand(PageLocator sourcePageLocator, PageLocator targetPageLocator, String position)
Retrieve a command to perform a simple move operation.MovePageCommand
PageService. newMovePageCommand(PageLocator sourcePageLocator, SpaceLocator targetSpaceLocator)
Retrieve a command that performs a move operation of a page to a top level of a target space.ServiceCommand
DefaultPageService. newRemovePageVersionCommand(PageLocator pageLocator)
ServiceCommand
PageService. newRemovePageVersionCommand(PageLocator pageLocator)
ServiceCommand
DefaultPageService. newRevertPageCommand(PageLocator pageToRevert, int version, String revertComment, boolean revertTitle)
ServiceCommand
PageService. newRevertPageCommand(PageLocator pageToRevert, int version, String revertComment, boolean revertTitle)
Retrieve a command to revert a pageServiceCommand
DefaultPageService. newRevertPageOrderCommand(PageLocator parentPageLocator)
ServiceCommand
PageService. newRevertPageOrderCommand(PageLocator parentPageLocator)
Retrieve a command to clear any existing positions for children of the located Page.ServiceCommand
DefaultPageService. newSetPageOrderCommand(PageLocator parentPageLocator, List<Long> childPageIds)
ServiceCommand
PageService. newSetPageOrderCommand(PageLocator parentPageLocator, List<Long> childPageIds)
Retrieve a command to set the order of all children for a supplied parent Page locator. -
Uses of PageLocator in com.atlassian.confluence.content.service.page
Classes in com.atlassian.confluence.content.service.page that implement PageLocator Modifier and Type Class Description class
AbstractPageLocator
class
IdAndVersionPageLocator
A page locator that uses the page Id to find an identified version of a page.class
IdPageLocator
A page locator that uses the page Id to find a pageclass
SinglePageLocator
class
TitleAndSpaceKeyPageLocator
Returns the page with the given space key and title.Constructors in com.atlassian.confluence.content.service.page with parameters of type PageLocator Constructor Description DeletePageCommand(PageManager pageManager, PermissionManager permissionManager, PageLocator pageLocator)
MovePageCommandImpl(PageManager pageManager, PermissionManager permissionManager, PageLocator sourcePageLocator, PageLocator targetPageLocator, String movePoint)
MovePageToTopOfSpaceCommand(PageManager pageManager, PermissionManager permissionManager, PageLocator sourcePageLocator, SpaceLocator targetSpaceLocator)
RemovePageVersionCommand(PageManager pageManager, PermissionManager permissionManager, PageLocator pageLocator)
RevertPageCommand(PageManager pageManager, PermissionManager permissionManager, PageLocator pageLocator, String revertComment, int version, boolean revertTitle)
RevertPageOrderCommand(PageManager pageManager, PermissionManager permissionManager, PageLocator parentPageLocator)
SetPageOrderCommand(PageManager pageManager, PermissionManager permissionManager, PageLocator parentPageLocator, List<Long> childPageIds)
-