Jive Forums API (5.5.20.2-oracle) Developer Javadocs

Uses of Class
com.jivesoftware.forum.ForumNotFoundException

Packages that use ForumNotFoundException
com.jivesoftware.forum Core interfaces and classes for Jive Forums. 
com.jivesoftware.forum.action Jive Forums WebWork actions. 
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.proxy Protection proxies for Jive Forums objects. 
com.jivesoftware.forum.webservices   
com.jivesoftware.forum.webservices.server   
 

Uses of ForumNotFoundException in com.jivesoftware.forum
 

Methods in com.jivesoftware.forum that throw ForumNotFoundException
abstract  Forum ForumFactory.getForum(long forumID)
          Returns the forum with the specified forumID.
abstract  Forum ForumFactory.getForum(java.lang.String nntpName)
          Returns the forum with the specified NNTP name.
 

Uses of ForumNotFoundException in com.jivesoftware.forum.action
 

Methods in com.jivesoftware.forum.action that throw ForumNotFoundException
 java.lang.String TagCloudAction.execute()
           
 java.lang.String TagsAction.execute()
           
 

Uses of ForumNotFoundException in com.jivesoftware.forum.database
 

Methods in com.jivesoftware.forum.database that throw ForumNotFoundException
 DbForum DatabaseCacheManager.getForum(long forumID)
           
 Forum DbForumFactory.getForum(long forumID)
           
 Forum DbForumFactory.getForum(java.lang.String nntpName)
           
protected static long DbForumFactory.getForumID(java.lang.String name)
          Returns the id of the forum with the specified name.
 

Constructors in com.jivesoftware.forum.database that throw ForumNotFoundException
DbForum(long id)
          Loads a forum with the specified id.
DbForum(java.lang.String nntpName)
          Loads a forum with the specified id.
 

Uses of ForumNotFoundException in com.jivesoftware.forum.gateway
 

Methods in com.jivesoftware.forum.gateway that throw ForumNotFoundException
protected  void JavaMailImporter.correctMessageDates(java.util.List messages)
          Corrects the dates on the provided list of messages.
protected  void JavaMailImporter.importMessages(java.util.List messages)
          Import the List of messages into the forum specified.
protected  void JavaMailImporter.processMessagesAndImport(java.util.List messages)
          Resolves parentage, corrects dates, sorts, imports, then clears messages.
protected  void JavaMailImporter.resolveParentage(java.util.List messages)
          Resolve parentage of messages.
 

Uses of ForumNotFoundException in com.jivesoftware.forum.proxy
 

Methods in com.jivesoftware.forum.proxy that throw ForumNotFoundException
 Forum ForumFactoryProxy.getForum(long forumID)
           
 Forum ForumFactoryProxy.getForum(java.lang.String nntpName)
           
 

Uses of ForumNotFoundException in com.jivesoftware.forum.webservices
 

Methods in com.jivesoftware.forum.webservices that throw ForumNotFoundException
 boolean PermissionService.anonymousUserHasPermissionOnForum(long permission, boolean additive, long forumID)
          Returns true if the anonymous users have a particular permission on the forum with the specified ID.
 int ContentService.countMessageSearchResultsByForumID(long forumID, Query query)
          Returns the number of results for the specified query for a forum.
 Announcement AnnouncementService.createForumAnnouncement(long userID, long forumID, java.lang.String subject, java.lang.String body, java.util.Date startDate, java.util.Date endDate)
          Creates a new category or forum announcement.
 Watch WatchService.createForumWatch(long userID, long forumID)
          Create a watch on a forum for the user with the specified ID.
 Announcement AnnouncementService.createNonExpiringForumAnnouncement(long userID, long forumID, java.lang.String subject, java.lang.String body, java.util.Date startDate)
          Creates a new non-expiring forum announcement.
 ForumThread ContentService.createThread(java.lang.String subject, java.lang.String body, long forumID, long userID)
          Creates a new thread.
 void ForumService.deleteForum(long forumID)
          Used to delete a forum by its ID.
 void ForumService.deleteProperty(java.lang.String name, long forumID)
          Delete a property with the given name from the forum with the given forum ID.
 void WatchService.deleteWatch(Watch watch)
          Delete the specified watch.
 int AnnouncementService.getAnnouncementCount(int objectType, long objectID)
          Returns the count of all currently viewable announcements in a container.
 int AnnouncementService.getAnnouncementCount(int objectType, long objectID, java.util.Date startDate, java.util.Date endDate)
          Returns the count of all announcements in a container that are viewable within the specified date range.
 Announcement[] AnnouncementService.getAnnouncements(int objectType, long objectID)
          Returns all currently viewable announcements in a container.
 Announcement[] AnnouncementService.getAnnouncements(int objectType, long objectID, java.util.Date startDate, java.util.Date endDate)
          Returns the announcements in a container that are viewable within a specified date range.If container is null than system announcements will be returned.
 Forum ContentService.getForum(long forumID)
          Returns a Forum by its id.
 Forum ForumService.getForum(long forumID)
          Returns a Forum by its ID.
 int AnnouncementService.getForumAnnouncementCountWithFilter(long forumID, AnnouncementFilter filter)
          Returns the number of viewable announcements using the specified forumID and AnnouncementFilter.
 Announcement[] AnnouncementService.getForumAnnouncementsWithFilter(long forumID, AnnouncementFilter filter)
          Returns the viewable announcements using the specified forumID and AnnouncementFilter.
 Watch WatchService.getForumWatch(long userID, long forumID)
          Returns a watch on a particular forum, or null if there isn't a watch.
 int WatchService.getForumWatchCount(long userID, long forumID)
          Return the count of all thread watches in a particular forumID for the given user.
 long[] WatchService.getForumWatches(long userID, long forumID)
          Returns an array of IDs for the threads a user is watching in a forum.
 ForumThread[] WatchService.getForumWatchObjects(long userID, long forumID, int startIndex, int numResults)
          Returns ForumThreads that the user is watching for a given Forum.
 int ForumMessageService.getMessageCountsByForumID(long forumID)
          Returns the number of messages that are in the forum.
 int ForumMessageService.getMessageCountsByForumIDAndFilter(long forumID, ResultFilter filter)
          Returns the number of messages that are in the forum with the specified id after the specified filter has been applied.
 long[] ForumMessageService.getMessageIDsByForumID(long forumID)
          Returns all of the message IDs for all of the message that are in the forum.
 long[] ForumMessageService.getMessageIDsByForumIDAndFilter(long forumID, ResultFilter filter)
          Returns all of the message IDs for all of the message that are in the forum with the specified ID, filtered by the the specified ResultFilter
 ForumMessage[] ForumMessageService.getMessagesByForumID(long forumID)
          Returns all of the messages in the forum.
 ForumMessage[] ForumMessageService.getMessagesByForumIDAndFilter(long forumID, ResultFilter filter)
          Returns all of the messages in the forum with the specified ID, filtered by the the specified ResultFilter
 long PermissionService.getPermissionsOnForum(long forumID)
          Returns permissions for current user on specified forum.
 ForumThread[] ForumThreadService.getPopularThreadsByForumID(long forumID)
          Returns an array of threadIDs for all the popular threads for a specific forum.
 Property[] ForumService.getProperties(long forumID)
          Returns all tbe extended properties for the forum with the forum with specified ID.
 java.lang.String ForumService.getProperty(java.lang.String name, long forumID)
          Returns the value for a given property name.
 int ForumThreadService.getThreadCountByForumID(long forumID)
          Returns a count of all threads under the forum.
 int ForumThreadService.getThreadCountByForumIDAndFilter(long forumID, ResultFilter filter)
          Returns a count of all threads under the forum filtered by the specified result filter.
 ForumThread[] ForumThreadService.getThreadsByForumID(long forumID)
          Returns all of the IDs for threads a forum has.
 ForumThread[] ForumThreadService.getThreadsByForumIDAndFilter(long forumID, ResultFilter filter)
          Returns all of the IDs for threads a forum has filtered by the specified result filter.
 ForumThread[] ForumThreadService.getThreadsByForumIDAndFilter(long forumID, ResultFilter filter, boolean reduceData)
          Returns all threads in a forum filtered by the specified result filter, with option to set forum name, unfilteredSubject, and unfilteredBody to null to reduce response size.
 long PermissionService.getUserPermissionsOnForum(long userID, long forumID)
          Returns permissions for specified user on specified forum.
 boolean PermissionService.isAuthorizedOnForum(long permission, long forumID)
          Returns true if the current user has the permission specified on the specified forum.
 boolean WatchService.isForumWatched(long userID, long forumID)
          Returns true if the user is watching the specified forum.
 boolean PermissionService.isUserAuthorizedOnForum(long permission, long userID, long forumID)
          Checks to see if a particular user has a particular permission on the specified forum.
 void ForumService.mergeForums(long forumID1, long forumID2)
          Merges the content of two forums by copying the threads from Forum with ID forumID2 to forum with ID forumID1.
 ForumMessage[] ContentService.messageSearchByCategoriesForObjects(long categoryID, Query query, int startIndex, int numResults)
          Provides the ability to create complex search queries with the ability to change sorting, filtering, etc. all by category.
 long[] ContentService.messageSearchByForum(long forumID, Query query, int startIndex, int numResults)
          Provides the ability to perform a search query for messages within a forum.
 ForumMessage[] ContentService.messageSearchByForumForObjects(long forumID, Query query, int startIndex, int numResults)
          Provides the ability to perform a search query for messages within a forum.
 ForumMessage[] ContentService.messageSearchForObjects(Query query, int startIndex, int numResults)
          Provides the ability to create complex search queries with the ability to change sorting, filtering, etc.
 void ForumService.moveForums(long forumID, long categoryID)
          Move the forum with the specified ID to the category with the specified ID.
 void ForumThreadService.moveThread(long threadID, long forumID)
          Moves the thread with the specified ID to the forum with the specified ID.
 boolean PermissionService.registeredUserHasPermissionOnForum(long permission, boolean additive, long forumID)
          Returns true if registered users have a particular permission on the forum with the specified ID.
 void ForumService.setProperty(java.lang.String name, java.lang.String value, long forumID)
          Set an extended for the property with the given forum ID.
 void ForumService.updateForum(Forum forum)
          Updates changes to a forum to the system.
 int PermissionService.usersWithPermissionCountOnForum(long permission, boolean additive, long forumID)
          Returns a count of the users that have a particular permission on the specified forum.
 long[] PermissionService.usersWithPermissionOnForum(long permission, boolean additive, long forumID)
          Returns all the userID's of users with a particular permission on the specified forum.
 

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

Methods in com.jivesoftware.forum.webservices.server that throw ForumNotFoundException
static void PermissionServiceHelper.addForumPermissionToUser(long permission, boolean additive, long userID, long forumID)
           
 boolean PermissionServiceImpl.anonymousUserHasPermissionOnForum(long permission, boolean additive, long forumID)
           
 int ContentServiceImpl.countMessageSearchResultsByForumID(long forumID, Query query)
           
 Announcement AnnouncementServiceImpl.createForumAnnouncement(long userID, long forumID, java.lang.String subject, java.lang.String body, java.util.Date startDate, java.util.Date endDate)
           
 Watch WatchServiceImpl.createForumWatch(long userID, long forumID)
           
 Announcement AnnouncementServiceImpl.createNonExpiringForumAnnouncement(long userID, long forumID, java.lang.String subject, java.lang.String body, java.util.Date startDate)
           
 ForumThread ContentServiceImpl.createThread(java.lang.String subject, java.lang.String body, long forumID, long userID)
           
 void ForumServiceImpl.deleteForum(long forumID)
           
 void ForumServiceImpl.deleteProperty(java.lang.String name, long forumID)
           
 void WatchServiceImpl.deleteWatch(Watch watch)
           
 int AnnouncementServiceImpl.getAnnouncementCount(int objectType, long objectID)
           
 int AnnouncementServiceImpl.getAnnouncementCount(int objectType, long objectID, java.util.Date startDate, java.util.Date endDate)
           
 Announcement[] AnnouncementServiceImpl.getAnnouncements(int objectType, long objectID)
           
 Announcement[] AnnouncementServiceImpl.getAnnouncements(int objectType, long objectID, java.util.Date startDate, java.util.Date endDate)
           
 Forum ContentServiceImpl.getForum(long forumID)
           
 Forum ForumServiceImpl.getForum(long forumID)
           
 int AnnouncementServiceImpl.getForumAnnouncementCountWithFilter(long forumID, AnnouncementFilter filter)
           
 Announcement[] AnnouncementServiceImpl.getForumAnnouncementsWithFilter(long forumID, AnnouncementFilter filter)
           
 Watch WatchServiceImpl.getForumWatch(long userID, long forumID)
           
 int WatchServiceImpl.getForumWatchCount(long userID, long forumID)
           
 long[] WatchServiceImpl.getForumWatches(long userID, long forumID)
           
 ForumThread[] WatchServiceImpl.getForumWatchObjects(long userID, long forumID, int startIndex, int numResults)
           
 int ForumMessageServiceImpl.getMessageCountsByForumID(long forumID)
           
 int ForumMessageServiceImpl.getMessageCountsByForumIDAndFilter(long forumID, ResultFilter filter)
           
 long[] ForumMessageServiceImpl.getMessageIDsByForumID(long forumID)
           
 long[] ForumMessageServiceImpl.getMessageIDsByForumIDAndFilter(long forumID, ResultFilter filter)
           
 ForumMessage[] ForumMessageServiceImpl.getMessagesByForumID(long forumID)
           
 ForumMessage[] ForumMessageServiceImpl.getMessagesByForumIDAndFilter(long forumID, ResultFilter filter)
           
 long PermissionServiceImpl.getPermissionsOnForum(long forumID)
           
 ForumThread[] ForumThreadServiceImpl.getPopularThreadsByForumID(long forumID)
           
 Property[] ForumServiceImpl.getProperties(long forumID)
           
 java.lang.String ForumServiceImpl.getProperty(java.lang.String name, long forumID)
           
 int ForumThreadServiceImpl.getThreadCountByForumID(long forumID)
           
 int ForumThreadServiceImpl.getThreadCountByForumIDAndFilter(long forumID, ResultFilter filter)
           
 ForumThread[] ForumThreadServiceImpl.getThreadsByForumID(long forumID)
           
 ForumThread[] ForumThreadServiceImpl.getThreadsByForumIDAndFilter(long forumID, ResultFilter filter)
           
 ForumThread[] ForumThreadServiceImpl.getThreadsByForumIDAndFilter(long forumID, ResultFilter filter, boolean reduceData)
           
 long PermissionServiceImpl.getUserPermissionsOnForum(long userID, long forumID)
           
 boolean PermissionServiceImpl.isAuthorizedOnForum(long permission, long forumID)
           
 boolean WatchServiceImpl.isForumWatched(long userID, long forumID)
           
 boolean PermissionServiceImpl.isUserAuthorizedOnForum(long permission, long userID, long forumID)
           
 void ForumServiceImpl.mergeForums(long forumID1, long forumID2)
           
 ForumMessage[] ContentServiceImpl.messageSearchByCategoriesForObjects(long categoryID, Query query, int startIndex, int numResults)
           
 long[] ContentServiceImpl.messageSearchByForum(long forumID, Query query, int startIndex, int numResults)
           
 ForumMessage[] ContentServiceImpl.messageSearchByForumForObjects(long forumID, Query query, int startIndex, int numResults)
           
 ForumMessage[] ContentServiceImpl.messageSearchForObjects(Query query, int startIndex, int numResults)
           
 void ForumServiceImpl.moveForums(long forumID, long categoryID)
           
 void ForumThreadServiceImpl.moveThread(long threadID, long forumID)
           
 boolean PermissionServiceImpl.registeredUserHasPermissionOnForum(long permission, boolean additive, long forumID)
           
 void ForumServiceImpl.setProperty(java.lang.String name, java.lang.String value, long forumID)
           
 void ForumServiceImpl.updateForum(Forum forum)
           
 int PermissionServiceImpl.usersWithPermissionCountOnForum(long permission, boolean additive, long forumID)
           
 long[] PermissionServiceImpl.usersWithPermissionOnForum(long permission, boolean additive, long forumID)
           
 


Jive Forums Project Page

Copyright © 1999-2006 Jive Software.