|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Manages the retrieval and manipulation both pages and blog entries. (Really this class manages "AbstractPage", but calling it AbstractPageManager would be just as confusing).
Field Summary |
Fields inherited from interface com.atlassian.confluence.core.ContentEntityManager |
ITERATE_ALL |
Method Summary | |
BlogPost |
findNextBlogPost(BlogPost post)
|
BlogPost |
findNextBlogPost(String key,
Date time)
|
BlogPost |
findPreviousBlogPost(BlogPost post)
|
BlogPost |
findPreviousBlogPost(String key,
Date time)
|
AbstractPage |
getAbstractPage(long id)
Retrieve the AbstractPage subclass with the given content ID. |
AttachmentManager |
getAttachmentManager()
|
int |
getAuthoredPagesCountByUser(String username)
Get the number of pages that have been created by a particular user |
BlogPost |
getBlogPost(long id)
Retrieve the blog post with the given content ID. |
BlogPost |
getBlogPost(String spaceKey,
String pageTitle,
Calendar day)
Retrieve the latest version of a blog post by its space key, title, and the day on which it was published. |
List |
getBlogPosts(Space space,
boolean currentOnly)
|
List |
getBlogPosts(String spaceKey,
Calendar postingDate,
int period)
|
Collection |
getDescendentIds(Page page)
|
List |
getDescendents(Page page)
|
NotificationManager |
getNotificationManager()
|
List |
getOrphanedPages(String spaceKey)
Retrieve a list of pages in a given space that are not linked to. |
Page |
getPage(long id)
Retrieve the page with the given content ID. |
Page |
getPage(String spaceKey,
String pageTitle)
Retrieve the latest version of a page by its space key and title. |
AbstractPage |
getPageByVersion(AbstractPage mostRecentPage,
int version)
returns the historical version of a page |
List |
getPageInTrash(String spaceKey,
String title)
|
List |
getPages(Space space,
boolean currentOnly)
|
List |
getPagesCreatedOrUpdatedSinceDate(Date date)
Get the list of all pages created or updated since a particular date. |
List |
getPagesStartingWith(Space space,
String s)
|
List |
getPermissionPages(Space space)
Retrieve all pages within a particular space that have page level permissions applied to them. |
List |
getPossibleRedirects(String pageTitle)
|
List |
getPossibleRedirectsForSpace(Space space,
String pageTitle)
|
List |
getRecentlyAddedBlogPosts(int maxPosts,
Date timeSince,
String spaceKey)
|
List |
getRecentlyAddedBlogPosts(int maxCount,
String spaceKey)
Retrieve the most recently created blog posts in a given space. |
List |
getRecentlyAddedPages(int maxCount,
String spaceKey)
Retrieve the most recently created pages in a given space. |
List |
getRecentlyUpdatedPages(int maxCount,
String spaceKey)
Retrieve the most recently modified pages in a given space. |
List |
getTopLevelPages(Space space)
|
List |
getUndefinedPages(String spaceKey)
Retrieve a list of link destinations in a given space that do not have pages. |
void |
removeAllBlogPosts(Space space)
|
void |
removeAllPages(Space space)
|
void |
removePageFromAncestorCollections(Page page)
|
void |
renamePage(AbstractPage page,
String newPageTitle)
|
void |
restorePage(AbstractPage page)
|
void |
setAttachmentManager(AttachmentManager attachmentManager)
|
void |
setNotificationManager(NotificationManager notificationManager)
|
boolean |
spaceHasBlogPosts(String spaceKey)
|
void |
trashPage(AbstractPage page)
|
void |
updatePageInAncestorCollections(Page pageBeingUpdated,
Page newParentPage)
|
Method Detail |
public Page getPage(long id)
id
- the database content ID for the page to return
public AbstractPage getAbstractPage(long id)
id
- the database content ID for the page to return
public BlogPost getBlogPost(long id)
id
- the database content ID for the blog post to return
public Page getPage(String spaceKey, String pageTitle)
public BlogPost getBlogPost(String spaceKey, String pageTitle, Calendar day)
public List getRecentlyAddedBlogPosts(int maxCount, String spaceKey)
SmartListManager
provides a more flexible (and more efficient) way
to perform this query, including accounting for user permissions.
maxCount
- the maximum number of blog posts to retrievespaceKey
- the key of the space to retrieve the posts from, or null to retrieve posts from all spaces
public List getRecentlyAddedPages(int maxCount, String spaceKey)
SmartListManager
provides a more flexible (and more efficient) way
to perform this query, including accounting for user permissions.
maxCount
- the maximum number of pages to retrievespaceKey
- the key of the space to retrieve the pages from, or null to retrieve posts from all spaces
public List getRecentlyUpdatedPages(int maxCount, String spaceKey)
SmartListManager
provides a more flexible (and more efficient) way
to perform this query, including accounting for user permissions.
maxCount
- the maximum number of pages to retrievespaceKey
- the key of the space to retrieve the pages from, or null to retrieve posts from all spaces
public List getOrphanedPages(String spaceKey)
spaceKey
- the key of the space to look for orphans in, or null to search all spaces
public List getUndefinedPages(String spaceKey)
spaceKey
- the key of the space to look for undefined pages in, or null to search all spaces
public List getPermissionPages(Space space)
space
- the space to search
public int getAuthoredPagesCountByUser(String username)
username
- the username of the user to search for
public List getPagesCreatedOrUpdatedSinceDate(Date date)
date
- the date the pages must have been created or edited after
public List getBlogPosts(String spaceKey, Calendar postingDate, int period)
public List getBlogPosts(Space space, boolean currentOnly)
public List getPages(Space space, boolean currentOnly)
public List getPagesStartingWith(Space space, String s)
public BlogPost findNextBlogPost(BlogPost post)
public BlogPost findPreviousBlogPost(BlogPost post)
public NotificationManager getNotificationManager()
public void setNotificationManager(NotificationManager notificationManager)
public AttachmentManager getAttachmentManager()
public void setAttachmentManager(AttachmentManager attachmentManager)
public void renamePage(AbstractPage page, String newPageTitle)
public List getPossibleRedirectsForSpace(Space space, String pageTitle)
public List getPossibleRedirects(String pageTitle)
public List getRecentlyAddedBlogPosts(int maxPosts, Date timeSince, String spaceKey)
public List getPageInTrash(String spaceKey, String title)
public boolean spaceHasBlogPosts(String spaceKey)
public List getDescendents(Page page)
public void updatePageInAncestorCollections(Page pageBeingUpdated, Page newParentPage)
public void removePageFromAncestorCollections(Page page)
public Collection getDescendentIds(Page page)
public List getTopLevelPages(Space space)
public AbstractPage getPageByVersion(AbstractPage mostRecentPage, int version)
mostRecentPage
- - must specify the most recent recent version of the page (page must be associated with a space)version
- - historical version to retrieve
public void removeAllPages(Space space)
public void removeAllBlogPosts(Space space)
public BlogPost findPreviousBlogPost(String key, Date time)
public BlogPost findNextBlogPost(String key, Date time)
public void trashPage(AbstractPage page)
public void restorePage(AbstractPage page)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |