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

Packages that use BlogPost
com.atlassian.confluence.content.render.xhtml.model.resource.identifiers   
com.atlassian.confluence.content.service.blogpost   
com.atlassian.confluence.event.events.content.blogpost   
com.atlassian.confluence.event.events.like   
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.renderer   
com.atlassian.confluence.rpc.soap.beans   
com.atlassian.confluence.util   
com.atlassian.confluence.util.breadcrumbs   
 

Uses of BlogPost in com.atlassian.confluence.content.render.xhtml.model.resource.identifiers
 

Methods in com.atlassian.confluence.content.render.xhtml.model.resource.identifiers that return BlogPost
 BlogPost BlogPostResourceIdentifierResolver.resolve(BlogPostResourceIdentifier blogResourceIdentifier, ConversionContext conversionContext)
           
 

Methods in com.atlassian.confluence.content.render.xhtml.model.resource.identifiers with parameters of type BlogPost
protected  boolean DefaultResourceIdentifierMatcher.matches(BlogPost blog, ResourceIdentifier ri)
           
 

Constructor parameters in com.atlassian.confluence.content.render.xhtml.model.resource.identifiers with type arguments of type BlogPost
AttachmentResourceIdentifierResolver(ResourceIdentifierResolver<PageResourceIdentifier,Page> pageResourceResolver, ResourceIdentifierResolver<BlogPostResourceIdentifier,BlogPost> blogPostResourceResolver, ResourceIdentifierResolver<DraftResourceIdentifier,Draft> draftResourceResolver, AttachmentManager attachmentManager)
           
 

Uses of BlogPost in com.atlassian.confluence.content.service.blogpost
 

Methods in com.atlassian.confluence.content.service.blogpost that return BlogPost
 BlogPost IdBlogPostLocator.getBlogPost()
           
 BlogPost BlogPostProvider.getBlogPost()
           
 BlogPost BlogPostLocator.getBlogPost()
           
 BlogPost CreateBlogPostCommandImpl.getCreatedBlogPost()
           
 BlogPost CreateBlogPostCommand.getCreatedBlogPost()
           
 

Uses of BlogPost in com.atlassian.confluence.event.events.content.blogpost
 

Methods in com.atlassian.confluence.event.events.content.blogpost that return BlogPost
 BlogPost BlogPostEvent.getBlogPost()
           
 BlogPost BlogPostUpdateEvent.getOriginalBlogPost()
           
 

Constructors in com.atlassian.confluence.event.events.content.blogpost with parameters of type BlogPost
BlogPostCreateEvent(Object src, BlogPost blogPost)
           
BlogPostEvent(Object src, BlogPost blogPost)
           
BlogPostInfoViewEvent(Object src, BlogPost blogPost)
           
BlogPostRemoveEvent(Object src, BlogPost blogPost)
           
BlogPostRestoreEvent(Object src, BlogPost blogPost)
           
BlogPostTrashedEvent(Object src, BlogPost blogPost, com.atlassian.user.User trasher)
           
BlogPostUpdateEvent(Object src, BlogPost updatedBlogPost, BlogPost originalBlogPost)
           
BlogPostUpdateEvent(Object src, BlogPost blogPost, BlogPost originalBlogPost, boolean minorEdit)
           
BlogPostViewEvent(Object src, BlogPost blogPost)
           
 

Uses of BlogPost in com.atlassian.confluence.event.events.like
 

Methods in com.atlassian.confluence.event.events.like that return BlogPost
 BlogPost BlogPostLikeEvent.getBlogPost()
           
 

Constructors in com.atlassian.confluence.event.events.like with parameters of type BlogPost
BlogPostLikeEvent(com.atlassian.user.User user, BlogPost blogPost)
           
 

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

Methods in com.atlassian.confluence.mail.reports with parameters of type BlogPost
 void ChangeDigestReport.addBlogPost(BlogPost blogPost)
           
 

Uses of BlogPost in com.atlassian.confluence.pages
 

Methods in com.atlassian.confluence.pages that return BlogPost
 BlogPost PageManager.findNextBlogPost(BlogPost post)
           
 BlogPost DefaultPageManager.findNextBlogPost(BlogPost post)
           
 BlogPost PageManager.findNextBlogPost(String key, Date time)
           
 BlogPost DefaultPageManager.findNextBlogPost(String key, Date time)
           
 BlogPost PageManager.findPreviousBlogPost(BlogPost post)
           
 BlogPost DefaultPageManager.findPreviousBlogPost(BlogPost post)
           
 BlogPost PageManager.findPreviousBlogPost(String key, Date time)
           
 BlogPost DefaultPageManager.findPreviousBlogPost(String key, Date time)
           
 BlogPost PageManager.getBlogPost(long id)
          Retrieve the blog post with the given content ID.
 BlogPost DefaultPageManager.getBlogPost(long id)
           
 BlogPost PageManager.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.
 BlogPost DefaultPageManager.getBlogPost(String spaceKey, String postTitle, Calendar day)
           
 BlogPost PageManager.getBlogPost(String spaceKey, String pageTitle, Calendar day, boolean eagerLoadComments)
          Retrieve the latest version of a blog post by its space key, title, and the day on which it was published.
 BlogPost DefaultPageManager.getBlogPost(String spaceKey, String postTitle, Calendar day, boolean eagerLoadComments)
           
 BlogPost BlogPostsCalendar.getFirstPostInNextMonth()
           
 BlogPost BlogPostsCalendar.getLastPostInPreviousMonth()
           
 

Methods in com.atlassian.confluence.pages that return types with arguments of type BlogPost
 List<BlogPost> PageManager.getBlogPosts(Space space, boolean currentOnly)
           
 List<BlogPost> DefaultPageManager.getBlogPosts(Space space, boolean currentOnly)
           
 List<BlogPost> BlogPostsCalendar.getPostsForDay(int dayOfMonth)
          Get the posts made on a particular day of the month
 List<BlogPost> BlogPostsCalendar.getPostsForMonth()
          Get all the posts for the month
 

Methods in com.atlassian.confluence.pages with parameters of type BlogPost
 BlogPost PageManager.findNextBlogPost(BlogPost post)
           
 BlogPost DefaultPageManager.findNextBlogPost(BlogPost post)
           
 BlogPost PageManager.findPreviousBlogPost(BlogPost post)
           
 BlogPost DefaultPageManager.findPreviousBlogPost(BlogPost post)
           
 void BlogPostsCalendar.setFirstPostInNextMonth(BlogPost firstPostInNextMonth)
           
 void BlogPostsCalendar.setLastPostInPreviousMonth(BlogPost lastPostInPreviousMonth)
           
 

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

Methods in com.atlassian.confluence.pages.actions that return BlogPost
 BlogPost AbstractPageAction.getBlogPost()
           
 BlogPost ViewPageAction.getFirstPostInNextMonth(Calendar postingDate)
          Returns the first post in the month after the current postingDay This method is a duplication of the method in AbstractBlogPostsAction - they really shouldn't be here.
 BlogPost AbstractBlogPostsAction.getFirstPostInNextMonth(Calendar postingDate)
          Returns the first post in the month after the current postingDay
 BlogPost ViewPageAction.getLastPostInPreviousMonth(Calendar postingDate)
          Returns the last post in the month before the current postingDay This method is a duplication of the method in AbstractBlogPostsAction - they really shouldn't be here.
 BlogPost AbstractBlogPostsAction.getLastPostInPreviousMonth(Calendar postingDate)
          Returns the last post in the month before the current postingDay
 BlogPost ViewBlogPostsByDateAction.getNextDatePost()
           
 BlogPost ViewBlogPostsByDateAction.getNextPost()
           
 BlogPost AbstractPageAction.getNextPost()
           
 BlogPost ViewBlogPostsByDateAction.getPreviousDatePost()
           
 BlogPost ViewBlogPostsByDateAction.getPreviousPost()
           
 BlogPost AbstractPageAction.getPreviousPost()
           
 

Methods in com.atlassian.confluence.pages.actions with parameters of type BlogPost
 String AbstractBlogPostsAction.renderBlogPost(BlogPost post)
           
 

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

Methods in com.atlassian.confluence.pages.persistence.dao that return BlogPost
 BlogPost BlogPostDao.getBlogPost(String spaceKey, String title, Calendar day)
          Get the blog post by name and date.
 BlogPost BlogPostDao.getBlogPost(String spaceKey, String title, Calendar day, boolean eagerLoadComments)
          Get the blog post by name and date.
 BlogPost BlogPostDao.getBlogPostByTitle(String spaceKey, String title)
          Get a blog post by name.
 BlogPost BlogPostDao.getById(long id)
          Get a blog post by id.
 BlogPost BlogPostDao.getFirstPostAfter(BlogPost post)
          Used for finding the "previous" post to an existing post.
 BlogPost BlogPostDao.getFirstPostAfter(String spaceKey, Date creationDate)
          Used for finding the "previous" post to an existing post
 BlogPost BlogPostDao.getFirstPostBefore(BlogPost post)
          Used for finding the "previous" post to an existing post.
 BlogPost BlogPostDao.getFirstPostBefore(String spaceKey, Date creationDate)
          Used for finding the "previous" post to an existing post
 BlogPost BlogPostDao.getMostRecentBlogPost(String spaceKey)
           
 

Methods in com.atlassian.confluence.pages.persistence.dao that return types with arguments of type BlogPost
 List<BlogPost> BlogPostDao.getBlogPosts(Space space, boolean currentOnly)
          Return an iterator for the specified space.
 

Methods in com.atlassian.confluence.pages.persistence.dao with parameters of type BlogPost
 BlogPost BlogPostDao.getFirstPostAfter(BlogPost post)
          Used for finding the "previous" post to an existing post.
 BlogPost BlogPostDao.getFirstPostBefore(BlogPost post)
          Used for finding the "previous" post to an existing post.
 

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

Methods in com.atlassian.confluence.pages.persistence.dao.hibernate that return BlogPost
 BlogPost HibernateBlogPostDao.getBlogPost(String spaceKey, String title, Calendar day)
           
 BlogPost HibernateBlogPostDao.getBlogPost(String spaceKey, String title, Calendar day, boolean eagerLoadComments)
           
 BlogPost HibernateBlogPostDao.getBlogPostByTitle(String spaceKey, String title)
           
 BlogPost HibernateBlogPostDao.getById(long id)
           
 BlogPost HibernateBlogPostDao.getFirstPostAfter(BlogPost post)
           
 BlogPost HibernateBlogPostDao.getFirstPostAfter(String spaceKey, Date creationDate)
           
 BlogPost HibernateBlogPostDao.getFirstPostBefore(BlogPost post)
           
 BlogPost HibernateBlogPostDao.getFirstPostBefore(String spaceKey, Date creationDate)
           
 BlogPost HibernateBlogPostDao.getMostRecentBlogPost(String spaceKey)
           
 

Methods in com.atlassian.confluence.pages.persistence.dao.hibernate that return types with arguments of type BlogPost
 List<BlogPost> HibernateBlogPostDao.getBlogPosts(Space space, boolean currentOnly)
           
 

Methods in com.atlassian.confluence.pages.persistence.dao.hibernate with parameters of type BlogPost
 BlogPost HibernateBlogPostDao.getFirstPostAfter(BlogPost post)
           
 BlogPost HibernateBlogPostDao.getFirstPostBefore(BlogPost post)
           
 

Uses of BlogPost in com.atlassian.confluence.renderer
 

Methods in com.atlassian.confluence.renderer that return BlogPost
 BlogPost BlogPostReference.getBlogPost()
           
 

Uses of BlogPost in com.atlassian.confluence.rpc.soap.beans
 

Constructors in com.atlassian.confluence.rpc.soap.beans with parameters of type BlogPost
RemoteBlogEntry(BlogPost blogPost)
           
 

Uses of BlogPost in com.atlassian.confluence.util
 

Methods in com.atlassian.confluence.util that return BlogPost
protected  BlogPost BlogPostLinkRenamingBean.getBlogPostBeingChanged()
           
 

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

Constructors in com.atlassian.confluence.util.breadcrumbs with parameters of type BlogPost
BlogPostBreadcrumb(BlogPost blogPost)
           
 



Copyright © 2003-2012 Atlassian. All Rights Reserved.