|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Method Summary | |
BlogPost |
getBlogPost(String spaceKey,
String title,
Calendar day)
Get the blog post by name and date. |
BlogPost |
getBlogPostByTitle(String spaceKey,
String title)
Get a blog post by name. |
List |
getBlogPosts(Space space,
boolean currentOnly)
Return an iterator for the specified space. |
List |
getBlogPosts(String spaceKey,
Calendar date,
int period)
Get the blog posts in a space for a particular period. |
BlogPost |
getById(long id)
Get a blog post by id. |
BlogPost |
getFirstPostAfter(BlogPost post)
Used for finding the "previous" post to an existing post. |
BlogPost |
getFirstPostAfter(String spaceKey,
Date creationDate)
Used for finding the "previous" post to an existing post |
BlogPost |
getFirstPostBefore(BlogPost post)
Used for finding the "previous" post to an existing post. |
BlogPost |
getFirstPostBefore(String spaceKey,
Date creationDate)
Used for finding the "previous" post to an existing post |
BlogPost |
getMostRecentBlogPost(String spaceKey)
|
List |
getRecentlyAddedBlogPosts(int maxPosts,
Date timeSince,
String spaceKey)
|
List |
getRecentlyAddedBlogPosts(int maxCount,
String spaceKey)
Get list of recently created blog posts. |
Methods inherited from interface com.atlassian.confluence.core.persistence.VersionedObjectDao |
findLatestVersionsCount, findLatestVersionsIterator, save |
Methods inherited from interface bucket.core.persistence.ObjectDao |
findAll, findAllSorted, getPersistentClass, refresh, remove, replicate, save, saveRaw |
Method Detail |
public BlogPost getById(long id)
public BlogPost getBlogPostByTitle(String spaceKey, String title)
spaceKey
- title
-
public BlogPost getBlogPost(String spaceKey, String title, Calendar day)
spaceKey
- the space to look for the post intitle
- the title of the post we are looking forday
- the DAY the post was created on. Any part of the calendar more specific than
a day will be ignoredpublic List getBlogPosts(String spaceKey, Calendar date, int period)
TODO: add Calendar.WEEK range support.
spaceKey
- the space to look for posts indate
- a calendar object representing the date range we are looking for. Any part of
the calendar more specific than the supplied period will be ignored.period
- one of the Calendar constants specifying the granularity of the search.
currently, only Calendar.MONTH and Calendar.DATE are supported
public List getBlogPosts(Space space, boolean currentOnly)
space
-
public List getRecentlyAddedBlogPosts(int maxCount, String spaceKey)
maxCount
- Maximum number of posts to returnspaceKey
- the spaceKey to look for the posts in. If this key is null, we look acrosns
all spaces
public BlogPost getFirstPostBefore(String spaceKey, Date creationDate)
spaceKey
- the space to look increationDate
- the date the post must be before
public BlogPost getFirstPostAfter(String spaceKey, Date creationDate)
spaceKey
- the space to look increationDate
- the date the post must be after
public BlogPost getFirstPostBefore(BlogPost post)
post
- the blog post that this must preceed
public BlogPost getFirstPostAfter(BlogPost post)
post
- the blog post that this must be after
public List getRecentlyAddedBlogPosts(int maxPosts, Date timeSince, String spaceKey)
public BlogPost getMostRecentBlogPost(String spaceKey)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |