Jive Forums API (5.5.20.2-oracle) Developer Javadocs

Uses of Class
com.jivesoftware.forum.ResultFilter

Packages that use ResultFilter
com.jivesoftware.forum Core interfaces and classes for Jive Forums. 
com.jivesoftware.forum.action Jive Forums WebWork actions. 
com.jivesoftware.forum.action.util Utility classes for action authors or skin developers. 
com.jivesoftware.forum.database DB implementation of core Jive Forums interfaces. 
com.jivesoftware.forum.gateway Synchronizes Jive Forums data with external data sources such as NNTP servers. 
com.jivesoftware.forum.moderation   
com.jivesoftware.forum.moderation.action   
com.jivesoftware.forum.proxy Protection proxies for Jive Forums objects. 
com.jivesoftware.forum.webservices.server   
com.jivesoftware.profiles.action   
 

Uses of ResultFilter in com.jivesoftware.forum
 

Subclasses of ResultFilter in com.jivesoftware.forum
 class TagResultFilter
           
 

Methods in com.jivesoftware.forum that return ResultFilter
static ResultFilter ResultFilter.createDefaultContentFilter()
          Creates a default ResultFilter: no filtering with results sorted on the modification date.
static ResultFilter ResultFilter.createDefaultForumFilter()
          Creates a default forum ResultFilter: no filtering with results sorted on the category index value.
static ResultFilter ResultFilter.createDefaultMessageFilter()
          Creates a default message ResultFilter: no filtering with results sorted on the message creation date in ascending order.
static ResultFilter ResultFilter.createDefaultThreadFilter()
          Creates a default thread ResultFilter: no filtering with results sorted on the thread modification date.
static ResultFilter ResultFilter.createDefaultUserMessagesFilter()
          Creates a default user messages ResultFilter: no filtering with results sorted on the message creation date descending (newest messages appear first).
 

Methods in com.jivesoftware.forum with parameters of type ResultFilter
 java.util.Iterator ContentRetrieval.getCombinedContent(ResultFilter filter, long[] types)
          Returns an Iterable for all threads, documents, and blog posts in the community, depending on which ContentTypes are supplied as an argument, and according the the supplied ResultFilter.
 int ContentRetrieval.getCombinedContentCount(ResultFilter filter, long[] types)
          Returns the combined number of threads, documents, and blog posts in the community, depending on which ContentTypes are supplied as an argument, and restricted by the ResultFilter.
 int ForumCategory.getForumCount(ResultFilter resultFilter)
          Returns the number of forums in the category based on the specified ResultFilter.
abstract  int ForumFactory.getForumCount(ResultFilter resultFilter)
          Returns the total number of forums in the system matching the ResultFilter.
 java.util.Iterator ForumCategory.getForums(ResultFilter resultFilter)
          Returns a Iterator for all the forums in the category that match the criteria specified by the ResultFilter.
abstract  java.util.Iterator ForumFactory.getForums(ResultFilter resultFilter)
          Returns all forums in the system that the user has read permission for and that matche the specified ResultFilter.
 int ContentRetrieval.getMessageCount(ResultFilter filter)
          Returns the number of messages in the community based on the specified ResultFilter.
 int Forum.getMessageCount(ResultFilter resultFilter)
          Returns the number of messages in the forum based on the specified ResultFilter.
 int ForumCategory.getMessageCount(ResultFilter resultFilter)
          Returns the number of messages in the category based on the specified ResultFilter.
 int ForumThread.getMessageCount(ResultFilter resultFilter)
          Returns the number of messages in this thread based on the specified result filter.
 java.util.Iterator ContentRetrieval.getMessages(ResultFilter filter)
          Returns an Iterable for all the messages in the community that match the criteria specified by the ResultFilter.
 ForumMessageIterator Forum.getMessages(ResultFilter resultFilter)
          Returns a Iterator for all the messages in the forum that match the criteria specified by the ResultFilter.
 java.util.Iterator ForumCategory.getMessages(ResultFilter resultFilter)
          Returns a Iterator for all the messages in the category that match the criteria specified by the ResultFilter.
 java.util.Iterator ForumThread.getMessages(ResultFilter resultFilter)
          Returns a Iterator for all the messages in the thread that match the criteria specified by the ResultFilter.
 int ForumCategory.getRecursiveForumCount(ResultFilter resultFilter)
          Returns the number of forums in the category and all sub-categories based on the specified ResultFilter.
 java.util.Iterator ForumCategory.getRecursiveForums(ResultFilter resultFilter)
          Returns a Iterator for all the forums in the category and sub-categories that match the criteria specified by the ResultFilter.
 int ContentRetrieval.getThreadCount(ResultFilter resultFilter)
          Returns the number of threads in the community based on the specified ResultFilter.
 int Forum.getThreadCount(ResultFilter resultFilter)
          Returns the number of threads in the forum based on the specified ResultFilter.
 int ForumCategory.getThreadCount(ResultFilter resultFilter)
          Returns the number of threads in the category based on the specified ResultFilter.
 java.util.Iterator ContentRetrieval.getThreads(ResultFilter resultFilter)
          Returns an Iterable for all the threads in the community that match the criteria specified by the ResultFilter.
 ForumThreadIterator Forum.getThreads(ResultFilter resultFilter)
          Returns a Iterator for all the threads in the forum that match the criteria specified by the ResultFilter.
 java.util.Iterator ForumCategory.getThreads(ResultFilter resultFilter)
          Returns a Iterator for all the threads in the category that match the criteria specified by the ResultFilter.
abstract  int ForumFactory.getUserMessageCount(User user, ResultFilter resultFilter)
          Returns the total number of messages a user has posted in all forums that obey the parameters set by the specificed ResultFilter.
abstract  java.util.Iterator ForumFactory.getUserMessages(User user, ResultFilter resultFilter)
          Returns an iterator for all messages posted by a user that obey the parameters set by the specified ResultFilter.
 

Uses of ResultFilter in com.jivesoftware.forum.action
 

Methods in com.jivesoftware.forum.action that return ResultFilter
 ResultFilter ForumAction.getMessageResultFilter()
          Returns a result filter for viewing lists of messages.
 ResultFilter ForumCategoryAction.getMessageResultFilter()
          Returns a result filter for viewing lists of messages.
 ResultFilter ForumAction.getResultFilter()
          Returns the result filter used to create the list of threads in this forum.
 ResultFilter ForumCategoryAction.getResultFilter()
          Returns the result filter used to create the list of threads in this category.
 ResultFilter ForumThreadAction.getResultFilter()
          Returns the result filter used to create the list of messages in this thread.
 ResultFilter OnlineAction.getResultFilter()
           
 ResultFilter PollsViewAction.getResultFilter()
          Returns the result filter for the list of polls.
 ResultFilter PrivateMessagesAction.getResultFilter()
           
 ResultFilter SearchAction.getResultFilter()
           
 ResultFilter TagAction.getResultFilter()
           
 ResultFilter UserSearch.getResultFilter()
           
 

Methods in com.jivesoftware.forum.action with parameters of type ResultFilter
 void ForumAction.setMessageResultFilter(ResultFilter filter)
          Sets the result filter for viewing lists of messages.
protected  void ForumCategoryAction.setResultFilter(ResultFilter resultFilter)
          Sets the ResultFilter used to create the list of threads in this category.
 void ForumThreadAction.setResultFilter(ResultFilter filter)
          Sets the result filter used to create the list of messages in this thread.
 

Uses of ResultFilter in com.jivesoftware.forum.action.util
 

Methods in com.jivesoftware.forum.action.util that return ResultFilter
 ResultFilter Pageable.getResultFilter()
          Returns a Jive Forums result filter - this gives us a handle on the current index in the list and the number of items per page.
 

Uses of ResultFilter in com.jivesoftware.forum.database
 

Methods in com.jivesoftware.forum.database with parameters of type ResultFilter
 java.util.Iterator DbForumCategory.getCombinedContent(ResultFilter filter, long[] types)
           
 int DbForumCategory.getCombinedContentCount(ResultFilter filter, long[] types)
           
 int DbForumCategory.getForumCount(ResultFilter resultFilter)
           
 int DbForumFactory.getForumCount(ResultFilter resultFilter)
           
protected  CachedPreparedStatement DbForumCategory.getForumListSQL(ResultFilter resultFilter, boolean countQuery, boolean recursiveQuery)
          Returns the SQL statement corresponding to a ResultFilter for threads.
 java.util.Iterator DbForumCategory.getForums(ResultFilter resultFilter)
           
 java.util.Iterator DbForumFactory.getForums(ResultFilter resultFilter)
           
 int DbForum.getMessageCount(ResultFilter resultFilter)
           
 int DbForumCategory.getMessageCount(ResultFilter resultFilter)
           
 int DbForumThread.getMessageCount(ResultFilter resultFilter)
           
protected  CachedPreparedStatement DbForum.getMessageListSQL(ResultFilter resultFilter, boolean countQuery)
          Returns the SQL statement corresponding to a ResultFilter for messages.
protected  CachedPreparedStatement DbForumCategory.getMessageListSQL(ResultFilter resultFilter, boolean countQuery)
          Returns the SQL statement corresponding to a ResultFilter for messages.
protected  CachedPreparedStatement DbForumThread.getMessageListSQL(ResultFilter resultFilter, boolean countQuery)
          Returns the SQL statement corresponding to a ResultFilter for messages.
 ForumMessageIterator DbForum.getMessages(ResultFilter resultFilter)
           
 java.util.Iterator DbForumCategory.getMessages(ResultFilter resultFilter)
           
 java.util.Iterator DbForumThread.getMessages(ResultFilter resultFilter)
           
 int DbForumCategory.getRecursiveForumCount(ResultFilter resultFilter)
           
 java.util.Iterator DbForumCategory.getRecursiveForums(ResultFilter resultFilter)
           
 int DbForum.getThreadCount(ResultFilter resultFilter)
           
 int DbForumCategory.getThreadCount(ResultFilter resultFilter)
           
protected  CachedPreparedStatement DbForum.getThreadListSQL(ResultFilter resultFilter, boolean countQuery)
          Returns the SQL statement corresponding to a ResultFilter for threads.
protected  CachedPreparedStatement DbForumCategory.getThreadListSQL(ResultFilter resultFilter, boolean countQuery)
          Returns the SQL statement corresponding to a ResultFilter for threads.
 ForumThreadIterator DbForum.getThreads(ResultFilter resultFilter)
           
 java.util.Iterator DbForumCategory.getThreads(ResultFilter resultFilter)
           
 int DbForumFactory.getUserMessageCount(User user, ResultFilter resultFilter)
           
 java.util.Iterator DbForumFactory.getUserMessages(User user, ResultFilter resultFilter)
           
 

Uses of ResultFilter in com.jivesoftware.forum.gateway
 

Methods in com.jivesoftware.forum.gateway with parameters of type ResultFilter
protected  void JavaMailImporter.shortTermQueryCacheHack(ResultFilter filter)
          Like the name says, it's a hack.
 

Uses of ResultFilter in com.jivesoftware.forum.moderation
 

Subclasses of ResultFilter in com.jivesoftware.forum.moderation
 class ModerationFilter
           
 

Uses of ResultFilter in com.jivesoftware.forum.moderation.action
 

Methods in com.jivesoftware.forum.moderation.action that return ResultFilter
 ResultFilter ViewModerateAction.getResultFilter()
           
 

Uses of ResultFilter in com.jivesoftware.forum.proxy
 

Methods in com.jivesoftware.forum.proxy with parameters of type ResultFilter
 java.util.Iterator ForumCategoryProxy.getCombinedContent(ResultFilter filter, long[] types)
           
 int ForumCategoryProxy.getCombinedContentCount(ResultFilter filter, long[] types)
           
 int ForumCategoryProxy.getForumCount(ResultFilter resultFilter)
           
 int ForumFactoryProxy.getForumCount(ResultFilter resultFilter)
           
 java.util.Iterator ForumCategoryProxy.getForums(ResultFilter resultFilter)
           
 java.util.Iterator ForumFactoryProxy.getForums(ResultFilter resultFilter)
           
 int ForumCategoryProxy.getMessageCount(ResultFilter resultFilter)
           
 int ForumProxy.getMessageCount(ResultFilter resultFilter)
           
 int ForumThreadProxy.getMessageCount(ResultFilter resultFilter)
           
 java.util.Iterator ForumCategoryProxy.getMessages(ResultFilter resultFilter)
           
 ForumMessageIterator ForumProxy.getMessages(ResultFilter resultFilter)
           
 java.util.Iterator ForumThreadProxy.getMessages(ResultFilter resultFilter)
           
 int ForumCategoryProxy.getRecursiveForumCount(ResultFilter resultFilter)
           
 java.util.Iterator ForumCategoryProxy.getRecursiveForums(ResultFilter resultFilter)
           
 int ForumCategoryProxy.getThreadCount(ResultFilter resultFilter)
           
 int ForumProxy.getThreadCount(ResultFilter resultFilter)
           
 java.util.Iterator ForumCategoryProxy.getThreads(ResultFilter resultFilter)
           
 ForumThreadIterator ForumProxy.getThreads(ResultFilter resultFilter)
           
 int ForumFactoryProxy.getUserMessageCount(User user, ResultFilter resultFilter)
           
 java.util.Iterator ForumFactoryProxy.getUserMessages(User user, ResultFilter resultFilter)
           
 

Uses of ResultFilter in com.jivesoftware.forum.webservices.server
 

Methods in com.jivesoftware.forum.webservices.server that return ResultFilter
static ResultFilter WSUtil.convert(ResultFilter filter)
          Converts a webservice ResultFilter object to a ResultFilter.
 

Uses of ResultFilter in com.jivesoftware.profiles.action
 

Methods in com.jivesoftware.profiles.action that return ResultFilter
 ResultFilter SearchProfile.getResultFilter()
           
 


Jive Forums Project Page

Copyright © 1999-2006 Jive Software.