|
Jive Forums API (5.5.20.2-oracle) Developer Javadocs | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ForumMessage | |
---|---|
com.jivesoftware.forum.webservices | |
com.jivesoftware.forum.webservices.server |
Uses of ForumMessage in com.jivesoftware.forum.webservices |
---|
Methods in com.jivesoftware.forum.webservices that return ForumMessage | |
---|---|
ForumMessage |
ContentService.createMessage(java.lang.String subject,
java.lang.String body,
long threadID,
long userID)
Creates a new message on the given thread. |
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. |
ForumMessage |
ForumMessageService.getChild(long messageID,
int index)
Returns the child of parent at index index in the parent's child array. |
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. |
ForumMessage |
Forum.getLatestMessage()
Returns the Lastmessage object of the forum. |
ForumMessage |
ForumThread.getLatestMessage()
Returns the most recently created messages in this thread. |
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. |
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 |
ForumMessage[] |
ForumMessageService.getMessagesByThreadID(long threadID)
Returns the messages that are in the thread. |
ForumMessage[] |
ForumMessageService.getMessagesByThreadIDAndFilter(long threadID,
ResultFilter filter)
Returns all of the messages that are in the thread after the specified filter has been applied. |
ForumMessage[] |
ContentService.getMessagesByUserID(long userID)
Returns all the messages created by the given userID. |
ForumMessage |
ForumMessageService.getParent(long messageID)
Returns the parent of the child ForumMessage. |
ForumMessage[] |
ForumMessageService.getRecursiveChildren(long messageID)
Returns an array for all child messages (and sub-children, etc) of the parent. |
ForumMessage[] |
ForumMessageService.getRecursiveMessages(long threadID)
Returns an array for all messages in the thread in depth-first order. |
ForumMessage |
ForumThread.getRootMessage()
Returns the root message this thread. |
ForumMessage |
ForumMessageService.getRootMessage(long threadID)
Returns the root of a thread. |
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. |
Methods in com.jivesoftware.forum.webservices with parameters of type ForumMessage | |
---|---|
void |
Forum.setLatestMessage(ForumMessage latestMessage)
|
void |
ForumThread.setLatestMessage(ForumMessage latestMessage)
Called by the ForumThreadService to set the appropriate latestMessage into the thread. |
void |
ForumThread.setRootMessage(ForumMessage rootMessage)
Called by the ForumThreadService to set the appropriate rootMessage into the thread. |
void |
ForumMessageService.updateForumMessage(ForumMessage message)
Used to update the subject and body of a ForumMessage |
Uses of ForumMessage in com.jivesoftware.forum.webservices.server |
---|
Methods in com.jivesoftware.forum.webservices.server that return ForumMessage | |
---|---|
static ForumMessage |
WSUtil.convert(ForumMessage message)
Converts a ForumMessage object to a webservice ForumMessage object. |
ForumMessage |
ContentServiceImpl.createMessage(java.lang.String subject,
java.lang.String body,
long threadID,
long userID)
|
ForumMessage |
ContentServiceImpl.createReplyMessage(java.lang.String subject,
java.lang.String body,
long messageID,
long userID)
|
ForumMessage |
ForumMessageServiceImpl.getChild(long messageID,
int index)
|
ForumMessage[] |
ForumMessageServiceImpl.getChildren(long messageID)
|
ForumMessage |
ContentServiceImpl.getForumMessage(long messageID)
|
ForumMessage |
ForumMessageServiceImpl.getForumMessage(long messageID)
|
ForumMessage[] |
ForumMessageServiceImpl.getMessagesByCategoryID(long categoryID)
|
ForumMessage[] |
ForumMessageServiceImpl.getMessagesByCategoryIDAndFilter(long categoryID,
ResultFilter filter)
|
ForumMessage[] |
ForumMessageServiceImpl.getMessagesByForumID(long forumID)
|
ForumMessage[] |
ForumMessageServiceImpl.getMessagesByForumIDAndFilter(long forumID,
ResultFilter filter)
|
ForumMessage[] |
ForumMessageServiceImpl.getMessagesByThreadID(long threadID)
|
ForumMessage[] |
ForumMessageServiceImpl.getMessagesByThreadIDAndFilter(long threadID,
ResultFilter filter)
|
ForumMessage[] |
ContentServiceImpl.getMessagesByUserID(long userID)
|
ForumMessage |
ForumMessageServiceImpl.getParent(long messageID)
|
ForumMessage[] |
ForumMessageServiceImpl.getRecursiveChildren(long messageID)
|
ForumMessage[] |
ForumMessageServiceImpl.getRecursiveMessages(long threadID)
|
ForumMessage |
ForumMessageServiceImpl.getRootMessage(long threadID)
|
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)
|
Methods in com.jivesoftware.forum.webservices.server with parameters of type ForumMessage | |
---|---|
void |
ForumMessageServiceImpl.updateForumMessage(ForumMessage message)
|
|
Jive Forums Project Page | |||||||||
PREV NEXT | FRAMES NO FRAMES |