Jive Forums API (5.5.20.2-oracle) Developer Javadocs

Uses of Class
com.jivesoftware.forum.ForumCategoryNotFoundException

Packages that use ForumCategoryNotFoundException
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.proxy Protection proxies for Jive Forums objects. 
com.jivesoftware.forum.webservices   
com.jivesoftware.forum.webservices.server   
 

Uses of ForumCategoryNotFoundException in com.jivesoftware.forum
 

Methods in com.jivesoftware.forum that throw ForumCategoryNotFoundException
abstract  ForumCategory ForumFactory.getForumCategory(long categoryID)
          Returns the forum category with the specified categoryID.
 

Uses of ForumCategoryNotFoundException in com.jivesoftware.forum.action
 

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

Uses of ForumCategoryNotFoundException in com.jivesoftware.forum.database
 

Methods in com.jivesoftware.forum.database that throw ForumCategoryNotFoundException
 DbForumCategory DatabaseCacheManager.getForumCategory(long categoryID)
           
 ForumCategory DbForumFactory.getForumCategory(long categoryID)
           
 

Constructors in com.jivesoftware.forum.database that throw ForumCategoryNotFoundException
DbForumCategory(long id)
          Loads an existing category.
DbForumCategory(long id, java.sql.Connection con)
           
 

Uses of ForumCategoryNotFoundException in com.jivesoftware.forum.proxy
 

Methods in com.jivesoftware.forum.proxy that throw ForumCategoryNotFoundException
 ForumCategory ForumFactoryProxy.getForumCategory(long categoryID)
           
 

Uses of ForumCategoryNotFoundException in com.jivesoftware.forum.webservices
 

Methods in com.jivesoftware.forum.webservices that throw ForumCategoryNotFoundException
 boolean PermissionService.anonymousUserHasPermissionOnCategory(long permission, boolean additive, long categoryID)
          Returns true if the anonymous users have a particular permission on the category with the specified ID.
 int ContentService.countMessageSearchResultsByCategoryID(long categoryID, Query query)
          Returns the number of possible results for the specified query by category.
 int ContentService.countQuickMessageSearchResultsByCategoryID(long categoryID, java.lang.String query)
          Returns the number of possible results for the specified query.
 Watch WatchService.createCategoryWatch(long userID, long categoryID)
          Create a watch on a category for the specified user.
 Announcement AnnouncementService.createForumCategoryAnnouncement(long userID, long categoryID, java.lang.String subject, java.lang.String body, java.util.Date startDate, java.util.Date endDate)
          Creates a new category announcement.
 Forum ForumService.createForumUnderCategory(java.lang.String name, java.lang.String description, long categoryID)
          Creates a new forum under the specified category.
 Announcement AnnouncementService.createNonExpiringForumCategoryAnnouncement(long userID, long categoryID, java.lang.String subject, java.lang.String body, java.util.Date startDate)
          Creates a new non-expiring category announcement.
 Forum ForumService.createRestrictedForumUnderCategory(java.lang.String name, java.lang.String description, long categoryID, long userID)
          Bundles calls associated with creation of a new forum that sets the user as the moderator and sets negative permission for anonymous and registered users.
 ForumCategory ForumCategoryService.createRestrictedSubCategory(java.lang.String name, java.lang.String description, long categoryID, long userID)
          Bundles calls associated with creation of a new sub category that sets the user as the category admin and sets negative permission for anonymous and registered users.
 ForumCategory ForumCategoryService.createSubCategory(java.lang.String name, java.lang.String description, long categoryID)
          Creates a new ForumCategory as a sub-category off of the specified category.
 void ForumCategoryService.deleteCategory(long categoryID)
          Used to delete the specified category
 void ForumCategoryService.deleteProperty(java.lang.String name, long categoryID)
          Delete a property with the given name from the category with the given 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.
 ForumCategory[] ForumCategoryService.getCategoriesByCategoryID(long categoryID)
          Returns the child categories of the category with the given id.
 Watch WatchService.getCategoryWatch(long userID, long categoryID)
          Returns a watch on a particular category, or null if there isn't a watch.
 int WatchService.getCategoryWatchCount(long userID, long categoryID)
          Return the count of all forum watches in a particular categoryID for the given userID.
 long[] WatchService.getCategoryWatches(long userID, long categoryID)
          Returns an array of IDs for all the forum objects a user is watching in a category.
 Forum[] WatchService.getCategoryWatchObjects(long userID, long categoryID, int startIndex, int numResults)
          Returns Forums that the user is watching for a given category.
 ForumCategory ContentService.getForumCategory(long categoryID)
          Returns a ForumCategory by its id.
 ForumCategory ForumCategoryService.getForumCategory(long categoryID)
          Returns a ForumCategory by its id
 int ForumService.getForumCount(long categoryID)
          Returns the number of forums under the specified category.
 int ForumService.getForumCountByCategoryIDWithFilter(long categoryID, ResultFilter resultFilter)
          Returns an array of IDs for all forums under this category.
 Forum[] ForumService.getForumsByCategoryID(long categoryID)
          Returns an array of IDs for all forums under this category.
 Forum[] ForumService.getForumsByCategoryIDWithFilter(long categoryID, ResultFilter resultFilter)
          Returns an array of IDs for all forums under this category.
 ForumThread[] WatchService.getForumThreadWatchesByCategory(long userID, long categoryID, int startIndex, int numResults)
          Returns ForumThreads that the user is watching for all the Forums under the given Category.
 int ForumMessageService.getMessageCountByCategoryID(long categoryID)
          Returns the number of messages that are in the category.
 int ForumMessageService.getMessageCountByCategoryIDAndFilter(long categoryID, ResultFilter filter)
          Returns the number of messages that are in the category with the specified id after the specified filter has been applied.
 long[] ForumMessageService.getMessageIDsByCategoryID(long categoryID)
          Returns all of the message IDs for all of the message that are in the category.
 long[] ForumMessageService.getMessageIDsByCategoryIDAndFilter(long categoryID, ResultFilter filter)
          Returns all of the message IDs for all of the message that are in the category with the specified ID, filtered by the the specified result filter.
 ForumMessage[] ForumMessageService.getMessagesByCategoryID(long categoryID)
          Returns all of the messages that are in the category.
 ForumMessage[] ForumMessageService.getMessagesByCategoryIDAndFilter(long categoryID, ResultFilter filter)
          Returns all of the messages that are in the category with the specified ID, filtered by the the specified result filter.
 long PermissionService.getPermissionsOnCategory(long categoryID)
          Returns permissions for current user on specified category.
 ForumThread[] ForumThreadService.getPopularThreadsByCategoryID(long categoryID)
          Returns an array of popular threads by category.
 Property[] ForumCategoryService.getProperties(long categoryID)
          Returns all tbe extended properties for the category with the specified id.
 java.lang.String ForumCategoryService.getProperty(java.lang.String name, long categoryID)
          Returns the extended property value for the specified name.
 ForumCategory[] ForumCategoryService.getRecursiveCategoriesByCategoryID(long categoryID)
          Returns all of the categories under the specified category recursively.
 int AnnouncementService.getRecursiveCategoryAnnouncementCount(long categoryID)
          Returns the number of viewable announcements recursively using the categoryID provided.
 int AnnouncementService.getRecursiveCategoryAnnouncementCountWithFilter(long categoryID, AnnouncementFilter filter)
          Returns the number of viewable announcements recursively using the specified categoryID and AnnouncementFilter.
 Announcement[] AnnouncementService.getRecursiveCategoryAnnouncements(long categoryID, int startIndex, int numResults)
          Returns the viewable announcements recursively using the categoryID provided.
 Announcement[] AnnouncementService.getRecursiveCategoryAnnouncementsWithFilter(long categoryID, AnnouncementFilter filter)
          Returns the viewable announcements recursively using the specified categoryID and AnnouncementFilter.
 int ForumCategoryService.getRecursiveCategoryCountByCategoryID(long categoryID)
          Returns a count of all the categories under a category
 int ForumService.getRecursiveForumCount(long categoryID)
          Returns the count of all forums under the category with the specified ID.
 int ForumCategoryService.getRecursiveForumCountByCategoryID(long categoryID)
          Returns a count of all the forums under a category.
 int ForumCategoryService.getRecursiveForumCountByCategoryIDWithFilter(long categoryID, ResultFilter resultFilter)
          Returns a count of all the forums under a category.
 Forum[] ForumService.getRecursiveForums(long categoryID)
          Returns an array of forum ids for all forums under the category with the specified ID recursively.
 Forum[] ForumCategoryService.getRecursiveForumsByCategoryID(long categoryID)
          Returns all of the forums under the specified category recursively.
 Forum[] ForumCategoryService.getRecursiveForumsByCategoryIDWithFilter(long categoryID, ResultFilter resultFilter)
          Returns all of the forums under the specified category recursively.
 int WatchService.getRecursiveForumThreadWatchCountByCategory(long userID, long categoryID)
          Return the count of all thread watches in a particular categoryID for the given user.
 ForumThread[] WatchService.getRecursiveForumThreadWatchesByCategory(long userID, long categoryID, int startIndex, int numResults)
          Returns ForumThreads that the user is watching for all the Forums under the given Category.
 int WatchService.getRecursiveForumWatchCountByCategory(long userID, long categoryID)
          Return the count of all forum watches in a particular categoryID for the given userID.
 Forum[] WatchService.getRecursiveForumWatchesByCategory(long userID, long categoryID, int startIndex, int numResults)
          Returns Forums that the user is watching for a given category and all of its subcategories.
 int ForumThreadService.getThreadCountByCategoryID(long categoryID)
          Returns the number of threads in the specified category.
 int ForumThreadService.getThreadCountByCategoryIDAndFilter(long categoryID, ResultFilter filter)
          Returns the number of threads in the specified category after being filtered by the specified filter.
 ForumThread[] ForumThreadService.getThreadsByCategoryID(long categoryID)
          Returns all of the IDs for threads a category.
 ForumThread[] ForumThreadService.getThreadsByCategoryIDAndFilter(long categoryID, ResultFilter filter)
          Returns all of the IDs for threads a category has filtered by the specified result filter.
 long PermissionService.getUserPermissionsOnCategory(long userID, long categoryID)
          Returns permissions for specified user on specified category.
 boolean PermissionService.isAuthorizedOnCategory(long permission, long categoryID)
          Returns true if the current user has the permission specified on the specified category.
 boolean WatchService.isCategoryWatched(long userID, long categoryID)
          Returns true if the user is watching the specified category.
 boolean PermissionService.isUserAuthorizedOnCategory(long permission, long userID, long categoryID)
          Checks to see if a particular user has a particular permission on the specified category.
 long[] ContentService.messageSearchByCategories(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.
 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.
 void ForumService.moveForums(long forumID, long categoryID)
          Move the forum with the specified ID to the category with the specified ID.
 long[] ContentService.quickMessageSearchByCategoryID(long categoryID, java.lang.String query, int startIndex, int numResults)
          Provides the ability to do quick search queries based on the provided string.
 ForumMessage[] ContentService.quickMessageSearchByCategoryIDForObjects(long categoryID, java.lang.String query, int startIndex, int numResults)
          Provides the ability to do quick search queries based on the provided string.
 boolean PermissionService.registeredUserHasPermissionOnCategory(long permission, boolean additive, long categoryID)
          Returns true if registered users have a particular permission on the category with the specified ID.
 void ForumCategoryService.setProperty(java.lang.String name, java.lang.String value, long categoryID)
          Set an extended propery for the category with the given category id.
 void ForumCategoryService.updateCategory(ForumCategory category)
          Update a ForumCategory
 int PermissionService.usersWithPermissionCountOnCategory(long permission, boolean additive, long categoryID)
          Returns a count of the users that have a particular permission on the specified category.
 long[] PermissionService.usersWithPermissionOnCategory(long permission, boolean additive, long categoryID)
          Returns all the userID's of users with a particular permission on the specified category.
 

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

Methods in com.jivesoftware.forum.webservices.server that throw ForumCategoryNotFoundException
static void PermissionServiceHelper.addCategoryPermissionToUser(long permission, boolean additive, long userID, long categoryID)
           
 boolean PermissionServiceImpl.anonymousUserHasPermissionOnCategory(long permission, boolean additive, long categoryID)
           
 int ContentServiceImpl.countMessageSearchResultsByCategoryID(long categoryID, Query query)
           
 int ContentServiceImpl.countQuickMessageSearchResultsByCategoryID(long categoryID, java.lang.String query)
           
 Watch WatchServiceImpl.createCategoryWatch(long userID, long categoryID)
           
 Announcement AnnouncementServiceImpl.createForumCategoryAnnouncement(long userID, long categoryID, java.lang.String subject, java.lang.String body, java.util.Date startDate, java.util.Date endDate)
           
 Forum ForumServiceImpl.createForumUnderCategory(java.lang.String name, java.lang.String description, long categoryID)
           
 Announcement AnnouncementServiceImpl.createNonExpiringForumCategoryAnnouncement(long userID, long categoryID, java.lang.String subject, java.lang.String body, java.util.Date startDate)
           
 Forum ForumServiceImpl.createRestrictedForumUnderCategory(java.lang.String name, java.lang.String description, long categoryID, long userID)
           
 ForumCategory ForumCategoryServiceImpl.createRestrictedSubCategory(java.lang.String name, java.lang.String description, long categoryID, long userID)
           
 ForumCategory ForumCategoryServiceImpl.createSubCategory(java.lang.String name, java.lang.String description, long categoryID)
           
 void ForumCategoryServiceImpl.deleteCategory(long categoryID)
           
 void ForumCategoryServiceImpl.deleteProperty(java.lang.String name, long categoryID)
           
 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)
           
 ForumCategory[] ForumCategoryServiceImpl.getCategoriesByCategoryID(long categoryID)
           
 Watch WatchServiceImpl.getCategoryWatch(long userID, long categoryID)
           
 int WatchServiceImpl.getCategoryWatchCount(long userID, long categoryID)
           
 long[] WatchServiceImpl.getCategoryWatches(long userID, long categoryID)
           
 Forum[] WatchServiceImpl.getCategoryWatchObjects(long userID, long categoryID, int startIndex, int numResults)
           
 ForumCategory ContentServiceImpl.getForumCategory(long categoryID)
           
 ForumCategory ForumCategoryServiceImpl.getForumCategory(long categoryID)
           
 int ForumServiceImpl.getForumCount(long categoryID)
           
 int ForumServiceImpl.getForumCountByCategoryIDWithFilter(long categoryID, ResultFilter resultFilter)
           
 Forum[] ForumServiceImpl.getForumsByCategoryID(long categoryID)
           
 Forum[] ForumServiceImpl.getForumsByCategoryIDWithFilter(long categoryID, ResultFilter resultFilter)
           
 ForumThread[] WatchServiceImpl.getForumThreadWatchesByCategory(long userID, long categoryID, int startIndex, int numResults)
           
 int ForumMessageServiceImpl.getMessageCountByCategoryID(long categoryID)
           
 int ForumMessageServiceImpl.getMessageCountByCategoryIDAndFilter(long categoryID, ResultFilter filter)
           
 long[] ForumMessageServiceImpl.getMessageIDsByCategoryID(long categoryID)
           
 long[] ForumMessageServiceImpl.getMessageIDsByCategoryIDAndFilter(long categoryID, ResultFilter filter)
           
 ForumMessage[] ForumMessageServiceImpl.getMessagesByCategoryID(long categoryID)
           
 ForumMessage[] ForumMessageServiceImpl.getMessagesByCategoryIDAndFilter(long categoryID, ResultFilter filter)
           
 long PermissionServiceImpl.getPermissionsOnCategory(long categoryID)
           
 ForumThread[] ForumThreadServiceImpl.getPopularThreadsByCategoryID(long categoryID)
           
 Property[] ForumCategoryServiceImpl.getProperties(long categoryID)
           
 java.lang.String ForumCategoryServiceImpl.getProperty(java.lang.String name, long categoryID)
           
 ForumCategory[] ForumCategoryServiceImpl.getRecursiveCategoriesByCategoryID(long categoryID)
           
 int AnnouncementServiceImpl.getRecursiveCategoryAnnouncementCount(long categoryID)
           
 int AnnouncementServiceImpl.getRecursiveCategoryAnnouncementCountWithFilter(long categoryID, AnnouncementFilter filter)
           
 Announcement[] AnnouncementServiceImpl.getRecursiveCategoryAnnouncements(long categoryID, int startIndex, int numResults)
           
 Announcement[] AnnouncementServiceImpl.getRecursiveCategoryAnnouncementsWithFilter(long categoryID, AnnouncementFilter filter)
           
 int ForumCategoryServiceImpl.getRecursiveCategoryCountByCategoryID(long categoryID)
           
 int ForumServiceImpl.getRecursiveForumCount(long categoryID)
           
 int ForumCategoryServiceImpl.getRecursiveForumCountByCategoryID(long categoryID)
           
 int ForumCategoryServiceImpl.getRecursiveForumCountByCategoryIDWithFilter(long categoryID, ResultFilter resultFilter)
           
 Forum[] ForumServiceImpl.getRecursiveForums(long categoryID)
           
 Forum[] ForumCategoryServiceImpl.getRecursiveForumsByCategoryID(long categoryID)
           
 Forum[] ForumCategoryServiceImpl.getRecursiveForumsByCategoryIDWithFilter(long categoryID, ResultFilter resultFilter)
           
 int WatchServiceImpl.getRecursiveForumThreadWatchCountByCategory(long userID, long categoryID)
           
 ForumThread[] WatchServiceImpl.getRecursiveForumThreadWatchesByCategory(long userID, long categoryID, int startIndex, int numResults)
           
 int WatchServiceImpl.getRecursiveForumWatchCountByCategory(long userID, long categoryID)
           
 Forum[] WatchServiceImpl.getRecursiveForumWatchesByCategory(long userID, long categoryID, int startIndex, int numResults)
           
 int ForumThreadServiceImpl.getThreadCountByCategoryID(long categoryID)
           
 int ForumThreadServiceImpl.getThreadCountByCategoryIDAndFilter(long CategoryID, ResultFilter filter)
           
 ForumThread[] ForumThreadServiceImpl.getThreadsByCategoryID(long categoryID)
           
 ForumThread[] ForumThreadServiceImpl.getThreadsByCategoryIDAndFilter(long categoryID, ResultFilter filter)
           
 long PermissionServiceImpl.getUserPermissionsOnCategory(long userID, long categoryID)
           
 boolean PermissionServiceImpl.isAuthorizedOnCategory(long permission, long categoryID)
           
 boolean WatchServiceImpl.isCategoryWatched(long userID, long categoryID)
           
 boolean PermissionServiceImpl.isUserAuthorizedOnCategory(long permission, long userID, long categoryID)
           
 long[] ContentServiceImpl.messageSearchByCategories(long categoryID, Query query, int startIndex, int numResults)
           
 ForumMessage[] ContentServiceImpl.messageSearchByCategoriesForObjects(long categoryID, Query query, int startIndex, int numResults)
           
 void ForumServiceImpl.moveForums(long forumID, long categoryID)
           
 long[] ContentServiceImpl.quickMessageSearchByCategoryID(long categoryID, java.lang.String query, int startIndex, int numResults)
           
 ForumMessage[] ContentServiceImpl.quickMessageSearchByCategoryIDForObjects(long categoryID, java.lang.String query, int startIndex, int numResults)
           
 boolean PermissionServiceImpl.registeredUserHasPermissionOnCategory(long permission, boolean additive, long categoryID)
           
 void ForumCategoryServiceImpl.setProperty(java.lang.String name, java.lang.String value, long categoryID)
           
 void ForumCategoryServiceImpl.updateCategory(ForumCategory category)
           
 int PermissionServiceImpl.usersWithPermissionCountOnCategory(long permission, boolean additive, long categoryID)
           
 long[] PermissionServiceImpl.usersWithPermissionOnCategory(long permission, boolean additive, long categoryID)
           
 


Jive Forums Project Page

Copyright © 1999-2006 Jive Software.