Jive Forums API (5.5.20.2-oracle) Developer Javadocs

Uses of Class
com.jivesoftware.forum.ForumMessageNotFoundException

Packages that use ForumMessageNotFoundException
com.jivesoftware.forum Core interfaces and classes for Jive Forums. 
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 ForumMessageNotFoundException in com.jivesoftware.forum
 

Methods in com.jivesoftware.forum that throw ForumMessageNotFoundException
 ForumMessage TreeWalker.getChild(ForumMessage parent, int index)
          Returns the child of parent at index index in the parent's child array.
 ForumMessage QueryResult.getMessage()
          Get the message this query result pertains to.
abstract  ForumMessage ForumFactory.getMessage(long messageID)
          Returns the forum message with the specified messageID.
 ForumMessage ForumThread.getMessage(long messageID)
          Returns a message from this thread based on its id.
 ForumMessage TreeWalker.getParent(ForumMessage child)
          Returns the parent of the child ForumMessage.
 

Uses of ForumMessageNotFoundException in com.jivesoftware.forum.database
 

Methods in com.jivesoftware.forum.database that throw ForumMessageNotFoundException
protected  void DbForumThread.deleteMessage(DbForumMessage message, java.sql.Connection con, boolean recursiveDelete)
          Delete message method that accepts a Connection as argument -- useful for transactions.
 ForumMessage DbTreeWalker.getChild(ForumMessage message, int index)
           
 ForumMessage DbForumFactory.getMessage(long messageID)
           
 ForumMessage DbForumThread.getMessage(long messageID)
           
 ForumMessage DbTreeWalker.getParent(ForumMessage message)
           
 

Constructors in com.jivesoftware.forum.database that throw ForumMessageNotFoundException
DbForumMessage(long messageID)
          Loads the specified message by its message id.
DbForumMessage(long forumID, int forumIndex)
          Loads the specified message by forumID and forum index.
 

Uses of ForumMessageNotFoundException in com.jivesoftware.forum.proxy
 

Methods in com.jivesoftware.forum.proxy that throw ForumMessageNotFoundException
 ForumMessage TreeWalkerProxy.getChild(ForumMessage parent, int index)
           
 ForumMessage ForumFactoryProxy.getMessage(long messageID)
           
 ForumMessage ForumThreadProxy.getMessage(long messageID)
           
 ForumMessage TreeWalkerProxy.getParent(ForumMessage child)
           
 

Uses of ForumMessageNotFoundException in com.jivesoftware.forum.webservices
 

Methods in com.jivesoftware.forum.webservices that throw ForumMessageNotFoundException
 void ForumMessageService.addAttachmentToMessage(java.lang.String name, javax.activation.DataSource source, long messageID)
          Adds an attachment to the message with the specified ID.
 ForumMessage ContentService.createReplyMessage(java.lang.String subject, java.lang.String body, long messageID, long userID)
          Creates a new message that is a direct response to a given message.
 void ForumMessageService.deleteMessage(long messageID)
          Delete the message with the following id.
 void ForumMessageService.deleteMessageAndChildren(long messageID, boolean deleteChildren)
          Delete the message with the specified id.
 void ForumMessageService.deleteProperty(java.lang.String name, long messageID)
          Delete a property with the given name from the message with the given ID.
 javax.activation.DataSource[] ForumMessageService.getAttachmentsByMessageID(long messageID)
          Returns an array of attachments that are attached to the specified message.
 ForumMessage ForumMessageService.getChild(long messageID, int index)
          Returns the child of parent at index index in the parent's child array.
 int ForumMessageService.getChildCount(long messageID)
          Returns the number of children of parent.
 ForumMessage[] ForumMessageService.getChildren(long messageID)
          Returns an array of all the child messages of the parent.
 ForumMessage ContentService.getForumMessage(long messageID)
          Returns a ForumMessage by its id.
 ForumMessage ForumMessageService.getForumMessage(long messageID)
          Returns a ForumMessage by its ID.
 int ForumMessageService.getIndexOfChild(long parentID, long messageID)
          Returns the index of child in parent.
 int ForumMessageService.getMessageDepth(long messageID)
          Returns the depth of a message in the message tree hierarchy.
 ForumMessage ForumMessageService.getParent(long messageID)
          Returns the parent of the child ForumMessage.
 java.lang.String ForumMessageService.getProperty(java.lang.String name, long messageID)
          Returns the value of the extended property for the message with the specified ID.
 int ForumMessageService.getRecursiveChildCount(long messageID)
          Returns the total number of recursive children of a parent.
 ForumMessage[] ForumMessageService.getRecursiveChildren(long messageID)
          Returns an array for all child messages (and sub-children, etc) of the parent.
 Property[] ForumMessageService.getUnfilteredProperties(long messageID)
          Returns the properties without applying filters to them first.
 boolean ForumMessageService.hasParent(long messageID)
          Returns true if the child message has a parent message.
 boolean ForumMessageService.isLeaf(long messageID)
          Returns true if node is a leaf.
 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.
 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.
 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.
 ForumMessage[] ContentService.quickMessageSearchForObjects(java.lang.String query, int startIndex, int numResults)
          Provides the ability to do quick search queries based on the provided string.
 void ForumMessageService.setProperty(java.lang.String name, java.lang.String value, long messageID)
          Set an extended for the property with the given message id.
 void ForumMessageService.updateForumMessage(ForumMessage message)
          Used to update the subject and body of a ForumMessage
 

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

Methods in com.jivesoftware.forum.webservices.server that throw ForumMessageNotFoundException
 void ForumMessageServiceImpl.addAttachmentToMessage(java.lang.String name, javax.activation.DataSource source, long messageID)
           
 ForumMessage ContentServiceImpl.createReplyMessage(java.lang.String subject, java.lang.String body, long messageID, long userID)
           
 void ForumMessageServiceImpl.deleteMessage(long messageID)
           
 void ForumMessageServiceImpl.deleteMessageAndChildren(long messageID, boolean deleteChildren)
           
 void ForumMessageServiceImpl.deleteProperty(java.lang.String name, long messageID)
           
 javax.activation.DataSource[] ForumMessageServiceImpl.getAttachmentsByMessageID(long messageID)
           
 ForumMessage ForumMessageServiceImpl.getChild(long messageID, int index)
           
 int ForumMessageServiceImpl.getChildCount(long messageID)
           
 ForumMessage[] ForumMessageServiceImpl.getChildren(long messageID)
           
 ForumMessage ContentServiceImpl.getForumMessage(long messageID)
           
 ForumMessage ForumMessageServiceImpl.getForumMessage(long messageID)
           
 int ForumMessageServiceImpl.getIndexOfChild(long parentID, long messageID)
           
 int ForumMessageServiceImpl.getMessageDepth(long messageID)
           
 ForumMessage ForumMessageServiceImpl.getParent(long messageID)
           
 java.lang.String ForumMessageServiceImpl.getProperty(java.lang.String name, long messageID)
           
 int ForumMessageServiceImpl.getRecursiveChildCount(long messageID)
           
 ForumMessage[] ForumMessageServiceImpl.getRecursiveChildren(long messageID)
           
 Property[] ForumMessageServiceImpl.getUnfilteredProperties(long messageID)
           
 boolean ForumMessageServiceImpl.hasParent(long messageID)
           
 boolean ForumMessageServiceImpl.isLeaf(long messageID)
           
 ForumMessage[] ContentServiceImpl.messageSearchByCategoriesForObjects(long categoryID, 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)
           
 ForumMessage[] ContentServiceImpl.quickMessageSearchByCategoryIDForObjects(long categoryID, java.lang.String query, int startIndex, int numResults)
           
 ForumMessage[] ContentServiceImpl.quickMessageSearchForObjects(java.lang.String query, int startIndex, int numResults)
           
 void ForumMessageServiceImpl.setProperty(java.lang.String name, java.lang.String value, long messageID)
           
 void ForumMessageServiceImpl.updateForumMessage(ForumMessage message)
           
 


Jive Forums Project Page

Copyright © 1999-2006 Jive Software.