Jive Forums API (5.5.20.2-oracle) Web Services Client Javadocs

Uses of Class
com.jivesoftware.forum.ForumNotFoundException

Packages that use ForumNotFoundException
com.jivesoftware.forum.webservices   
 

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.
 


Jive Forums Project Page

Copyright © 1999-2006 Jive Software.