Jive Forums API (5.5.20.2-oracle) Developer Javadocs

Uses of Interface
com.jivesoftware.forum.ForumMessage

Packages that use ForumMessage
com.jivesoftware.forum Core interfaces and classes for Jive Forums. 
com.jivesoftware.forum.abuse   
com.jivesoftware.forum.action Jive Forums WebWork actions. 
com.jivesoftware.forum.action.util Utility classes for action authors or skin developers. 
com.jivesoftware.forum.ban.interceptor   
com.jivesoftware.forum.database DB implementation of core Jive Forums interfaces. 
com.jivesoftware.forum.event Provides mechanisms to be notified of actions in the system such as new messages being created. 
com.jivesoftware.forum.gateway Synchronizes Jive Forums data with external data sources such as NNTP servers. 
com.jivesoftware.forum.interceptor Filters and rejects content being added to the system. 
com.jivesoftware.forum.moderation   
com.jivesoftware.forum.nntp.spi Implementation of core NNTP interfaces. 
com.jivesoftware.forum.proxy Protection proxies for Jive Forums objects. 
com.jivesoftware.forum.renderer.filter   
com.jivesoftware.forum.util Jive Forums utility classes. 
com.jivesoftware.forum.virusscan   
com.jivesoftware.forum.webservices.server   
 

Uses of ForumMessage in com.jivesoftware.forum
 

Methods in com.jivesoftware.forum that return ForumMessage
 ForumMessage Forum.createMessage()
          Factory method to create a message with an anonymous author.
 ForumMessage Forum.createMessage(User user)
          Factory method to create a message as the specified user.
 ForumMessage TreeWalker.getChild(ForumMessage parent, int index)
          Returns the child of parent at index index in the parent's child array.
 ForumMessage MessageRejectedException.getForumMessage()
          Returns the message that triggered the exception.
 ForumMessage Forum.getLatestMessage()
          Returns the most recently created or edited message in this forum.
 ForumMessage ForumCategory.getLatestMessage()
          Returns the most recently created or edited message in this category (including all sub-categories).
 ForumMessage ForumThread.getLatestMessage()
          Returns the most recently created messages in this thread.
 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.
 ForumMessage ForumMessage.getParentMessage()
          Returns the parent message of this message or null if this message is the root message of a thread.
 ForumMessage TreeWalker.getRoot()
          Returns the root of the tree.
 ForumMessage ForumThread.getRootMessage()
          Returns the root message this thread.
 

Methods in com.jivesoftware.forum with parameters of type ForumMessage
 void ForumThread.addMessage(ForumMessage parentMessage, ForumMessage newMessage)
          Adds a new message to this thread.
 void RatingManager.addRating(User user, ForumMessage message, Rating rating)
          Add a rating to the forum message.
 void SearchManager.addToIndex(ForumMessage message)
          Adds an individual message to the index.
 ForumThread Forum.createThread(ForumMessage rootMessage)
          Factory method to create a new thread.
 void ForumThread.deleteMessage(ForumMessage message)
          Deletes a message in this thread.
 void ForumThread.deleteMessage(ForumMessage message, boolean deleteChildren)
          Deletes a message in this thread, optionally recusively deleting child messages.
 ForumMessage TreeWalker.getChild(ForumMessage parent, int index)
          Returns the child of parent at index index in the parent's child array.
 int TreeWalker.getChildCount(ForumMessage parent)
          Returns the number of children of parent.
 java.util.Iterator TreeWalker.getChildren(ForumMessage parent)
          Returns an Iterator for all the child messages of the parent.
 int TreeWalker.getIndexOfChild(ForumMessage parent, ForumMessage child)
          Returns the index of child in parent.
 double RatingManager.getMeanRating(ForumMessage message)
          A convenience method which returns a geometric mean average of all the ratings given to the forum message.
 int TreeWalker.getMessageDepth(ForumMessage message)
          Returns the depth of a message in the message tree hierarchy.
 ForumMessage TreeWalker.getParent(ForumMessage child)
          Returns the parent of the child ForumMessage.
 int RewardManager.getPoints(ForumMessage message)
          Returns the number of reward points that have been assigned to a message.
 Rating RatingManager.getRating(User user, ForumMessage message)
          Returns the rating associated with the user, or null if this user hasn't rated the forum message.
 int RatingManager.getRatingCount(ForumMessage message)
          Returns the total number of ratings given to the forum message.
 java.util.Iterator RatingManager.getRatings(ForumMessage message)
          Returns an Iterator of all the ratings given to the forum message.
 int ReadTracker.getReadStatus(User user, ForumMessage message)
          Returns the read status on the specified message.
 int TreeWalker.getRecursiveChildCount(ForumMessage parent)
          Returns the total number of recursive children of a parent.
 java.util.Iterator TreeWalker.getRecursiveChildren(ForumMessage parent)
          Returns an Iterator for all child messages (and sub-children, etc) of the parent.
 boolean TreeWalker.hasParent(ForumMessage child)
          Returns true if the child message has a parent message.
 boolean RatingManager.hasRated(User user, ForumMessage message)
          Returns whether the user has rated the forum message or not.
 void MessageInterceptor.invokeInterceptor(ForumMessage message, int type)
          Invokes the interceptor on the specified message.
 boolean TreeWalker.isLeaf(ForumMessage node)
          Returns true if node is a leaf.
 void ReadTracker.markRead(User user, ForumMessage message)
          Marks an individual message as read.
 void SearchManager.removeFromIndex(ForumMessage message)
          Removes an individual message from the index.
 void RewardManager.rewardPoints(ForumMessage message, int numPoints)
          Rewards a message with points from the thread that the message belongs to.
 void QueryResult.setMessage(ForumMessage message)
          Set the entry this query result pertains to.
 

Constructors in com.jivesoftware.forum with parameters of type ForumMessage
MessageRejectedException(java.lang.String rejectionMessage, ForumMessage forumMessage)
           
MessageRejectedException(java.lang.Throwable nestedThrowable, ForumMessage forumMessage)
           
QueryResult(ForumMessage message, float relevance)
          Creates a new QueryResult object.
 

Uses of ForumMessage in com.jivesoftware.forum.abuse
 

Methods in com.jivesoftware.forum.abuse that return ForumMessage
 ForumMessage AbuseReport.getMessage()
           
 

Methods in com.jivesoftware.forum.abuse with parameters of type ForumMessage
 java.util.List AbuseManager.getAbuseReports(ForumMessage message)
          Gets a list of open abuse reports for a particular message
 java.util.List AbuseManagerImpl.getAbuseReports(ForumMessage message)
           
 int AbuseManager.getNumberOfAbuseReports(ForumMessage message)
          Gets the number of abuse reports for a particular message
 int AbuseManagerImpl.getNumberOfAbuseReports(ForumMessage message)
           
 boolean AbuseManager.hasUserReportedAbuse(ForumMessage message, User user)
          Checks if a user has already reported abuse for a particular message.
 boolean AbuseManagerImpl.hasUserReportedAbuse(ForumMessage message, User user)
           
 void AbuseManager.resolveAbuseReports(ForumMessage message)
          REsolves all abuse reports for a particular message
 void AbuseManagerImpl.resolveAbuseReports(ForumMessage message)
           
 void AbuseReport.setMessage(ForumMessage message)
           
 

Uses of ForumMessage in com.jivesoftware.forum.action
 

Methods in com.jivesoftware.forum.action that return ForumMessage
 ForumMessage Click.getMessage()
           
 ForumMessage ForumThreadAction.getMessage()
          Returns the message specified by the messageID parameter.
 ForumMessage OldPostAction.getMessage()
          Returns the message we're replying to.
 ForumMessage PostAction.getMessage()
          Returns the message we're replying to.
 ForumMessage RewardsAction.getMessage()
           
 ForumMessage OldPostAction.getNewMessage()
          Returns the new posted message.
 ForumMessage PostAction.getNewMessage()
          Returns the new posted message.
 ForumMessage OldPostAction.getPreviewedMessage()
          Returns a ForumMessage object the preview page can use.
protected  ForumMessage OldPostAction.retrieveFromSession()
          Retrieves relevant message data from the session.
protected  ForumMessage PostAction.retrieveFromSession()
          Retrieves relevant message data from the session.
 

Methods in com.jivesoftware.forum.action with parameters of type ForumMessage
protected  void AttachAction.addAttachments(ForumMessage message)
           
protected  void PostAction.addAttachments(ForumMessage message)
          Adds attachments to a message
 boolean ForumActionSupport.getCanEdit(ForumMessage message)
          Returns true if the page user has permission to edit the specified message, false otherwise.
 boolean ForumActionSupport.getCanEditAttach(ForumMessage message)
          Returns true if the page usre can create message attachments in the given forum, false otherwise.
 boolean ForumActionSupport.getCanEditTags(ForumMessage message)
           
 java.lang.String SearchAction.getMessageBodyPreview(ForumMessage message)
          Deprecated. Use SearchAction.getHighlightedText(QueryResult) instead
 java.lang.String SearchAction.getMessageSubjectPreview(ForumMessage message)
          Deprecated. Use SearchAction.getHighlightedText(QueryResult) instead
 boolean ForumActionSupport.isAuthor(ForumMessage message)
          Returns true if the page user is the author of the specified message, false otherwise.
 boolean ForumThreadAction.isRootMessage(ForumMessage msg)
          Returns true if the given message is the root message of the thread, false otherwise.
protected  void OldPostAction.loadToSession(ForumMessage message)
          Puts relevant message data in the session.
protected  void PostAction.loadToSession(ForumMessage message)
          Puts relevant message data in the session.
protected  boolean PostAction.newMessageModerated(ForumMessage msg)
          Determines whether the new message is moderated and sets the PostAction.isNewMessageModerated variable.
protected  void PostAction.removeAttachments(ForumMessage message)
          Remove attachments from a message
 void ForumMessageAware.setMessage(ForumMessage forumMessage)
          Provides the action an instance of ForumMessage
 void ForumThreadAction.setMessage(ForumMessage message)
          Sets the message to use in this action.
 void OldPostAction.setMessage(ForumMessage message)
          Sets the message.
 void PostAction.setMessage(ForumMessage message)
           
protected  void RewardsAction.setMessage(ForumMessage message)
           
protected  void OldPostAction.setNewMessage(ForumMessage newMessage)
           
protected  void PostAction.setNewMessage(ForumMessage newMessage)
          Sets the new posted message.
 

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

Methods in com.jivesoftware.forum.action.util that return ForumMessage
 ForumMessage Guest.getMessage()
          Returns the message object used as the source of the guest's name and email.
 

Methods in com.jivesoftware.forum.action.util with parameters of type ForumMessage
 void Guest.setMessage(ForumMessage message)
          Sets the internal message object - the guest's name and email might be stored as a message property.
 

Uses of ForumMessage in com.jivesoftware.forum.ban.interceptor
 

Methods in com.jivesoftware.forum.ban.interceptor with parameters of type ForumMessage
 void BanMessageInterceptor.invokeInterceptor(ForumMessage message, int type)
          Checks to see if the author or ip of the message is banned.
 

Uses of ForumMessage in com.jivesoftware.forum.database
 

Classes in com.jivesoftware.forum.database that implement ForumMessage
 class DbForumMessage
          Database implementation of the ForumMessage interface.
 class EmailWatchMessageWrapper
           
 

Methods in com.jivesoftware.forum.database that return ForumMessage
 ForumMessage DbForum.createMessage()
           
 ForumMessage DbForum.createMessage(User user)
           
 ForumMessage DbTreeWalker.getChild(ForumMessage message, int index)
           
 ForumMessage DbForum.getLatestMessage()
           
 ForumMessage DbForumCategory.getLatestMessage()
           
 ForumMessage DbForumThread.getLatestMessage()
           
 ForumMessage DbForumFactory.getMessage(long messageID)
           
 ForumMessage DbForumThread.getMessage(long messageID)
           
 ForumMessage DbTreeWalker.getParent(ForumMessage message)
           
 ForumMessage DbForumMessage.getParentMessage()
           
 ForumMessage EmailWatchMessageWrapper.getParentMessage()
           
 ForumMessage DbTreeWalker.getRoot()
           
 ForumMessage DbForumThread.getRootMessage()
           
 

Methods in com.jivesoftware.forum.database with parameters of type ForumMessage
 void DbTreeWalker.addChild(ForumMessage parent, ForumMessage child)
          Adds a child message to an existing parent.
 void DbForumThread.addMessage(ForumMessage parentMessage, ForumMessage newMessage)
           
 void DbRatingManager.addRating(User user, ForumMessage message, Rating rating)
           
 void DbSearchManager.addToIndex(ForumMessage message)
           
 void DbSearchManager.addToIndex(ForumMessage message, boolean cluster)
           
 ForumThread DbForum.createThread(ForumMessage rootMessage)
           
 void DbForumThread.deleteMessage(ForumMessage message)
           
 void DbForumThread.deleteMessage(ForumMessage message, boolean deleteChildren)
           
 ForumMessage DbTreeWalker.getChild(ForumMessage message, int index)
           
 int DbTreeWalker.getChildCount(ForumMessage parent)
           
 java.util.Iterator DbTreeWalker.getChildren(ForumMessage parent)
           
 int DbTreeWalker.getIndexOfChild(ForumMessage parent, ForumMessage child)
           
 double DbRatingManager.getMeanRating(ForumMessage message)
           
 int DbTreeWalker.getMessageDepth(ForumMessage message)
           
 ForumMessage DbTreeWalker.getParent(ForumMessage message)
           
 int DbRewardManager.getPoints(ForumMessage message)
           
 Rating DbRatingManager.getRating(User user, ForumMessage message)
           
 int DbRatingManager.getRatingCount(ForumMessage message)
           
 java.util.Iterator DbRatingManager.getRatings(ForumMessage message)
           
 int DbReadTracker.UserReadTracker.getReadStatus(ForumMessage message)
           
 int DbReadTracker.getReadStatus(User user, ForumMessage message)
           
 int DbTreeWalker.getRecursiveChildCount(ForumMessage parent)
           
 java.util.Iterator DbTreeWalker.getRecursiveChildren(ForumMessage parent)
           
 boolean DbTreeWalker.hasParent(ForumMessage message)
           
 boolean DbRatingManager.hasRated(User user, ForumMessage message)
           
 void DbInterceptorManager.invokeInterceptors(ForumMessage message, int type)
          Invokes all currently-installed interceptors on the specified message.
 boolean DbTreeWalker.isLeaf(ForumMessage message)
           
 boolean DbReadTracker.UserReadTracker.markRead(ForumMessage message)
           
 void DbReadTracker.markRead(User user, ForumMessage message)
           
 void DatabaseCacheManager.messagePut(long id, ForumMessage message)
           
 void DbWatchManager.notifyWatchUpdate(ForumMessage message)
           
 void DbSearchManager.removeFromIndex(ForumMessage message)
           
 void DbSearchManager.removeFromIndex(ForumMessage message, boolean cluster)
           
 void DbRewardManager.rewardPoints(ForumMessage message, int numPoints)
           
 

Constructors in com.jivesoftware.forum.database with parameters of type ForumMessage
DbForumThread(Forum forum, ForumMessage rootMessage)
          Creates a new DbForumThread.
EmailWatchMessageWrapper(ForumMessage wrappedMessage)
           
EmailWatchUpdateTask(int objectType, ForumMessage message, long[] users)
          Creates a new email watch update task.
 

Uses of ForumMessage in com.jivesoftware.forum.event
 

Methods in com.jivesoftware.forum.event that return ForumMessage
 ForumMessage MessageEvent.getMessage()
          Returns the ForumMessage that the event corresponds to.
 

Constructors in com.jivesoftware.forum.event with parameters of type ForumMessage
MessageEvent(int eventType, ForumMessage message, java.util.Map params)
          Creates a new message event.
 

Uses of ForumMessage in com.jivesoftware.forum.gateway
 

Methods in com.jivesoftware.forum.gateway that return ForumMessage
protected  ForumMessage JavaMailImporter.parseMessage(javax.mail.Message message, java.util.Date afterDate)
          Parse the JavaMail message object and return a ForumMessage object.
 

Methods in com.jivesoftware.forum.gateway with parameters of type ForumMessage
protected  void JavaMailImporter.addAttachments(ForumMessage forumMessage, javax.mail.Part part)
          Adds attachments from a JavaMail Part object to a forum message object.
protected  void JavaMailImporter.addUUencodedAttachments(ForumMessage forumMessage, java.io.BufferedReader reader)
          Search for uuencoded attachments from a reader and attach them to a message.
 void DefaultGatewayManager.exportData(ForumMessage message)
          Exports an individual message through all gateways.
 void GatewayExporter.exportData(ForumMessage message)
          Export a single message to the data source.
 void NewsgroupExporter.exportData(ForumMessage forumMessage)
          Export a forum message to a newsgroup.
 void SmtpExporter.exportData(ForumMessage forumMessage)
          Export a forum message to a SMTP server.
 void GatewayExporter.exportData(ForumMessage[] messages)
          Export a group of messages to the data source.
 void NewsgroupExporter.exportData(ForumMessage[] forumMessages)
          Export an array of forum messages to a newsgroup.
 void SmtpExporter.exportData(ForumMessage[] forumMessage)
          Export an array of forum message to a SMTP server.
 void NewsgroupExporter.exportMessage(ForumMessage forumMessage)
           
static java.lang.String GatewayUtil.getTranslatedFooter(ForumMessage message, java.lang.String exportFooter)
          Gets the export footer for a message, which is the footer with all tokens replaced with correct values.
static void JavaMailImporter.handleAttachmentException(AttachmentException e, ForumMessage forumMessage)
           
 void JavaMailImporter.InsertCacheItem.setParent(ForumMessage parent)
           
 

Constructors in com.jivesoftware.forum.gateway with parameters of type ForumMessage
JavaMailImporter.InsertCacheItem(Forum forum, ForumThread thread, ForumMessage parent, ForumMessage message)
           
 

Uses of ForumMessage in com.jivesoftware.forum.interceptor
 

Methods in com.jivesoftware.forum.interceptor with parameters of type ForumMessage
 void GatewayInterceptor.invokeInterceptor(ForumMessage message, int type)
           
 void GovernorInterceptor.invokeInterceptor(ForumMessage message, int type)
           
 void IPInterceptor.invokeInterceptor(ForumMessage message, int type)
          checks to see if IP is banned, moderated, or requires an email notification.
 void KeywordInterceptor.invokeInterceptor(ForumMessage message, int type)
           
 void ModerationInterceptor.invokeInterceptor(ForumMessage message, int type)
           
 void UserInterceptor.invokeInterceptor(ForumMessage message, int type)
          Checks to see if the author of the message is a banned user.
 void VirusScanInterceptor.invokeInterceptor(ForumMessage message, int type)
           
 

Uses of ForumMessage in com.jivesoftware.forum.moderation
 

Methods in com.jivesoftware.forum.moderation with parameters of type ForumMessage
 void ModerationManager.approve(AuthToken authToken, ForumMessage message)
          Approve a moderated message
 void ModerationManagerImpl.approve(AuthToken authToken, ForumMessage message)
           
 void ModerationManager.editAndApprove(AuthToken authToken, ForumMessage message, java.lang.String subject, java.lang.String body)
          Edit and approve a moderated message
 void ModerationManagerImpl.editAndApprove(AuthToken authToken, ForumMessage message, java.lang.String subject, java.lang.String body)
           
 void ModerationManager.reject(AuthToken authToken, ForumMessage message)
          Reject a moderated message
 void ModerationManagerImpl.reject(AuthToken authToken, ForumMessage message)
           
 

Uses of ForumMessage in com.jivesoftware.forum.nntp.spi
 

Methods in com.jivesoftware.forum.nntp.spi that return ForumMessage
static ForumMessage[] FArticlePostUtil.createMessages(ForumSession session, MimeTools.Headers mainHeaders, MimeTools.Headers headers, java.lang.String body)
          Posts the given article with mainHeaders and body to the forum.
static ForumMessage[] FArticlePostUtil.parseAlternative(ForumSession session, MimeTools.Headers mainHeaders, java.util.Iterator rawArticle, java.lang.String mimeBoundary)
          Parse a multipart alternative body part searching for the start of the text/plain part.
static ForumMessage[] FArticlePostUtil.parseBody(ForumSession session, MimeTools.Headers mainHeaders, MimeTools.Headers headers, java.nio.charset.Charset charset, java.util.Iterator rawArticle, java.lang.String encoding, java.lang.String type)
          Parses the raw article and pushes the data as plain text into a body string.
 

Uses of ForumMessage in com.jivesoftware.forum.proxy
 

Classes in com.jivesoftware.forum.proxy that implement ForumMessage
 class ForumMessageProxy
          A protection proxy for ForumMessage objects.
 

Methods in com.jivesoftware.forum.proxy that return ForumMessage
 ForumMessage ForumProxy.createMessage()
           
 ForumMessage ForumProxy.createMessage(User user)
           
 ForumMessage TreeWalkerProxy.getChild(ForumMessage parent, int index)
           
 ForumMessage ForumCategoryProxy.getLatestMessage()
           
 ForumMessage ForumProxy.getLatestMessage()
           
 ForumMessage ForumThreadProxy.getLatestMessage()
           
 ForumMessage ForumFactoryProxy.getMessage(long messageID)
           
 ForumMessage ForumThreadProxy.getMessage(long messageID)
           
 ForumMessage TreeWalkerProxy.getParent(ForumMessage child)
           
 ForumMessage ForumMessageProxy.getParentMessage()
           
 ForumMessage ForumMessageProxy.getProxiedForumMessage()
          Allow access to the underlying message object under two conditions: system or forum admin, or the message hasn't been added to a thread yet.
 ForumMessage TreeWalkerProxy.getRoot()
           
 ForumMessage ForumThreadProxy.getRootMessage()
           
 

Methods in com.jivesoftware.forum.proxy with parameters of type ForumMessage
 void ForumThreadProxy.addMessage(ForumMessage parentMessage, ForumMessage newMessage)
           
 void RatingManagerProxy.addRating(User user, ForumMessage message, Rating rating)
           
 ForumThread ForumProxy.createThread(ForumMessage rootMessage)
           
 void ForumThreadProxy.deleteMessage(ForumMessage message)
           
 void ForumThreadProxy.deleteMessage(ForumMessage message, boolean deleteChildren)
           
 ForumMessage TreeWalkerProxy.getChild(ForumMessage parent, int index)
           
 int TreeWalkerProxy.getChildCount(ForumMessage parent)
           
 java.util.Iterator TreeWalkerProxy.getChildren(ForumMessage parent)
           
 int TreeWalkerProxy.getIndexOfChild(ForumMessage parent, ForumMessage child)
           
 double RatingManagerProxy.getMeanRating(ForumMessage message)
           
 int TreeWalkerProxy.getMessageDepth(ForumMessage message)
           
 ForumMessage TreeWalkerProxy.getParent(ForumMessage child)
           
 int RewardManagerProxy.getPoints(ForumMessage message)
           
 Rating RatingManagerProxy.getRating(User user, ForumMessage message)
           
 int RatingManagerProxy.getRatingCount(ForumMessage message)
           
 java.util.Iterator RatingManagerProxy.getRatings(ForumMessage message)
           
 int ReadTrackerProxy.getReadStatus(User user, ForumMessage message)
           
 int TreeWalkerProxy.getRecursiveChildCount(ForumMessage parent)
           
 java.util.Iterator TreeWalkerProxy.getRecursiveChildren(ForumMessage parent)
           
 boolean TreeWalkerProxy.hasParent(ForumMessage child)
           
 boolean RatingManagerProxy.hasRated(User user, ForumMessage message)
           
 boolean TreeWalkerProxy.isLeaf(ForumMessage node)
           
 void ReadTrackerProxy.markRead(User user, ForumMessage message)
           
 void RewardManagerProxy.rewardPoints(ForumMessage message, int numPoints)
           
 

Constructors in com.jivesoftware.forum.proxy with parameters of type ForumMessage
ForumMessageProxy(ForumMessage message, AuthToken authToken, Permissions permissions)
          Creates a new ForumMessageProxy to protect the supplied message with the specified permissions
 

Uses of ForumMessage in com.jivesoftware.forum.renderer.filter
 

Methods in com.jivesoftware.forum.renderer.filter with parameters of type ForumMessage
static java.lang.String ImageFilter.convertMarkupToHtml(ForumMessage msg, java.lang.String markup)
           
static ImageFilter.NntpImageResult ImageFilter.convertMarkupToNntp(ForumMessage msg, java.lang.String source)
          Parses a message body and returns both the NNTP-compatible body as well as a mapping between the CID values and the Attachment it is associated with.
static java.util.List ImageFilter.getAttachmentsFromNntp(ForumMessage msg, java.lang.String source)
           
 

Uses of ForumMessage in com.jivesoftware.forum.util
 

Methods in com.jivesoftware.forum.util with parameters of type ForumMessage
static boolean SkinUtils.isNew(ForumMessage message, java.util.Date time)
          Returns true if the forum message has been modified since the specified time.
static java.lang.String ForumUtils.replaceTokens(java.lang.String string, ForumMessage message, java.lang.String queryString)
          Replaces tokens with the correct values.
 

Uses of ForumMessage in com.jivesoftware.forum.virusscan
 

Methods in com.jivesoftware.forum.virusscan with parameters of type ForumMessage
 void VirusScanManager.addMessageToQueue(ForumMessage message)
          Adds message to the virus scan queue.
 

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

Methods in com.jivesoftware.forum.webservices.server with parameters of type ForumMessage
static ForumMessage WSUtil.convert(ForumMessage message)
          Converts a ForumMessage object to a webservice ForumMessage object.
 


Jive Forums Project Page

Copyright © 1999-2006 Jive Software.