com.ibm.ram.common.data
Class ForumSearchResult

java.lang.Object
  extended by com.ibm.ram.common.data.ForumSearchResult

public class ForumSearchResult
extends java.lang.Object

Represents the part of a search result that defines a matched forum query

Since:
7.1.1

Constructor Summary
ForumSearchResult()
           
 
Method Summary
 java.lang.String getDisplayMessage()
           
 int getForumID()
           
 java.lang.String getForumName()
           
 long getPostID()
           
 int getTopicID()
           
 java.lang.String getTopicName()
           
 boolean isForum()
           
 boolean isPost()
           
 boolean isTopic()
           
 void setDisplayMessage(java.lang.String displayMessage)
           
 void setForum(boolean forum)
           
 void setForumID(int forumID)
           
 void setForumName(java.lang.String forumName)
           
 void setPost(boolean post)
           
 void setPostID(long postID)
           
 void setTopic(boolean topic)
           
 void setTopicID(int topicID)
           
 void setTopicName(java.lang.String topicName)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ForumSearchResult

public ForumSearchResult()
Method Detail

isForum

public boolean isForum()
Returns:
Returns the forum.
Since:
7.1.1

setForum

public void setForum(boolean forum)
Parameters:
forum - The forum to set.
Since:
7.1.1

isTopic

public boolean isTopic()
Returns:
Returns the topic.
Since:
7.1.1

setTopic

public void setTopic(boolean topic)
Parameters:
topic - The topic to set.
Since:
7.1.1

isPost

public boolean isPost()
Returns:
Returns the post.
Since:
7.1.1

setPost

public void setPost(boolean post)
Parameters:
post - The post to set.
Since:
7.1.1

getForumName

public java.lang.String getForumName()
Returns:
Returns the forumName.
Since:
7.1.1

setForumName

public void setForumName(java.lang.String forumName)
Parameters:
forumName - The forumName to set.
Since:
7.1.1

getTopicName

public java.lang.String getTopicName()
Returns:
Returns the topicName.
Since:
7.1.1

setTopicName

public void setTopicName(java.lang.String topicName)
Parameters:
topicName - The topicName to set.
Since:
7.1.1

getDisplayMessage

public java.lang.String getDisplayMessage()
Returns:
Returns the displayMessage.
Since:
7.1.1

setDisplayMessage

public void setDisplayMessage(java.lang.String displayMessage)
Parameters:
displayMessage - The displayMessage to set.
Since:
7.1.1

getForumID

public int getForumID()
Returns:
Returns the forumID.
Since:
7.1.1

setForumID

public void setForumID(int forumID)
Parameters:
forumID - The forumID to set.
Since:
7.1.1

getTopicID

public int getTopicID()
Returns:
Returns the topicID.
Since:
7.1.1

setTopicID

public void setTopicID(int topicID)
Parameters:
topicID - The topicID to set.
Since:
7.1.1

getPostID

public long getPostID()
Returns:
Returns the postID.
Since:
7.1.1

setPostID

public void setPostID(long postID)
Parameters:
postID - The postID to set.
Since:
7.1.1