Clearspace API (1.7.0) Core Javadocs

Uses of Interface
com.jivesoftware.community.Blog

Packages that use Blog
com.jivesoftware.community Core interfaces and classes for Clearspace. 
com.jivesoftware.community.event Provides mechanisms to be notified of actions in the system such as new messages being created. 
com.jivesoftware.community.util Clearspace utility classes. 
 

Uses of Blog in com.jivesoftware.community
 

Methods in com.jivesoftware.community that return Blog
 Blog BlogManager.createBlog(User user)
          Creates a new blog.
 Blog BlogPost.getBlog()
          Returns the blog this post belongs to.
 Blog BlogManager.getBlog(long blogID)
          Returns a blog by blog ID.
 Blog BlogManager.getBlog(java.lang.String displayName)
          Returns a blog by blog display name.
 Blog BlogPostSearchQueryCriteria.getFilteredBlog()
          Returns the blog that query results are restricted to.
 

Methods in com.jivesoftware.community that return types with arguments of type Blog
 JiveIterator<Blog> Community.getBlogs()
          Returns all Blogs associated with this community.
 JiveIterator<Blog> BlogManager.getBlogs(com.jivesoftware.community.BlogResultFilter resultFilter)
          Returns all the blogs on this system that match the criteria specified by the ResultFilter.
 JiveIterator<Blog> BlogManager.getBlogs(User user)
          Returns all blogs which are associated with the given user.
 JiveIterator<Blog> BlogManager.getBlogsByDisplayName(java.lang.String query, int startIndex, int endIndex, int numResults)
          Returns all the blogs on this system whose display name is LIKE the given query.
 JiveIterator<Blog> BlogManager.getRecentBlogs()
          Returns (at most) the ten most recent blogs created on this system.
 JiveIterator<Blog> SearchQuery.getResultBlogs()
          Returns an Iterable of the Blogs that search results are from.
 

Methods in com.jivesoftware.community with parameters of type Blog
 void BlogManager.addBlog(Blog blog)
          Adds a blog to the database.
 void Community.addBlog(Blog blog)
          Associates the specified Blog with this community.
 void SearchManager.addToIndex(Blog blog)
          Adds an individual blog to the index.
 SearchQueryCriteria SearchQueryManager.createSearchQueryCriteria(Blog blog)
          Returns a SearchQueryCriteria that can be used to query for blogs that are deemed similar to the provided blog.
 void BlogManager.deleteBlog(Blog blog)
          Permanently deletes a blog and all of the blog postings and comments associated with the blog.
 void BlogPostSearchQueryCriteria.filterOnBlog(Blog blog)
          Restricts the query results to posts posted in a specific blog.
 int SearchQuery.getResultBlogCount(Blog blog)
          Returns the number of blog posts results in the search that match the given blog.
 void Community.removeBlog(Blog blog)
          Disassociates the specified Blog from this community.
 void SearchManager.removeFromIndex(Blog blog)
          Removes a blog from the index.
 void SearchManager.updateIndex(Blog blog)
          Update an individual blog in the index.
 

Uses of Blog in com.jivesoftware.community.event
 

Methods in com.jivesoftware.community.event that return Blog
 Blog BlogEvent.getBlog()
          Returns the blog that the event corresponds to.
 

Constructors in com.jivesoftware.community.event with parameters of type Blog
BlogEvent(int eventType, Blog blog, java.util.Map<java.lang.String,? extends java.lang.Object> params)
          Creates a new blog event.
 

Uses of Blog in com.jivesoftware.community.util
 

Methods in com.jivesoftware.community.util with parameters of type Blog
static java.lang.String BlogUtils.getBlogURL(Blog blog)
          Returns the URL for the blog which is a combination of the base URL and the blog display name.
static java.lang.String BlogUtils.getCommentFeedURL(Blog blog)
          Returns a string containing the path to the comments feed for a blog.
static java.lang.String BlogUtils.getFeedURL(Blog blog)
          Returns a string containing the path to the feed which is a combination of the base URL, the blog display name and the default system feed type.
static java.lang.String BlogUtils.getSearchURL(Blog blog)
          Returns a string containing the path to the script that accepts search queries for a blog which is a combination of the base URL, the blog display name and the search path.
static java.lang.String BlogUtils.getTagFeedURL(Blog blog, ContentTag tag)
          Returns a string containing the path to the tag feed which is a combination of the base URL, the blog display name, the word 'feed-tags' and the given tag or tags.
static java.lang.String BlogUtils.getTagFeedURL(Blog blog, java.util.List<ContentTag> tags)
          Returns a string containing the path to the tag feed which is a combination of the base URL, the blog display name, the word 'feed-tags' and the given tag or tags.
static java.lang.String BlogUtils.getTagFeedURL(Blog blog, java.lang.String tags)
          Returns a string containing the path to the tag feed which is a combination of the base URL, the blog display name, the word 'feed-tags' and the given tag or tags.
static java.lang.String BlogUtils.getTagFeedURLPrefix(Blog blog)
          Returns the tag feed URL prefix for a given blog, which the BlogUtils.getTagFeedURL(com.jivesoftware.community.ContentTag) methods depend on.
static java.lang.String BlogUtils.getTagPermalink(Blog blog, ContentTag tag)
          Returns a tag permalink for a blog which is a combination of the base URL, the blog display name, the word 'tags' and the given tag..
static java.lang.String BlogUtils.getTagPermalink(Blog blog, java.util.List<ContentTag> tags)
          Returns a tag permalink for a blog which is a combination of the base URL, the blog display name, the word 'tags' and a list of tags.
static java.lang.String BlogUtils.getTagPermalink(Blog blog, java.lang.String tags)
          Returns a tag permalink for a blog which is a combination of the base URL, the blog display name, the word 'tags' and the given tag or tags, delimited using a plus (+) sign.
static java.lang.String BlogUtils.getTagsPermalink(Blog blog)
          Returns a tag permalink for a blog which is a combination of the base URL, the blog display name and the word 'tags'.
static java.lang.String BlogUtils.getTrackbackFeedURL(Blog blog)
          Returns a string containing the path to the trackbacks feed for a blog.
 


Clearspace Project Page

Copyright © 1999-2007 Jive Software.