com.liferay.portlet.messageboards.model
Interface MBThreadModel

All Superinterfaces:
BaseModel, java.lang.Cloneable, java.lang.Comparable, java.io.Serializable
All Known Subinterfaces:
MBThread

public interface MBThreadModel
extends BaseModel

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface is a model that represents the MBThread table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portlet.messageboards.service.model.MBThread, com.liferay.portlet.messageboards.service.model.impl.MBThreadImpl, com.liferay.portlet.messageboards.service.model.impl.MBThreadModelImpl

Method Summary
 long getCategoryId()
           
 long getLastPostByUserId()
           
 java.util.Date getLastPostDate()
           
 int getMessageCount()
           
 long getPrimaryKey()
           
 double getPriority()
           
 long getRootMessageId()
           
 long getThreadId()
           
 int getViewCount()
           
 void setCategoryId(long categoryId)
           
 void setLastPostByUserId(long lastPostByUserId)
           
 void setLastPostDate(java.util.Date lastPostDate)
           
 void setMessageCount(int messageCount)
           
 void setPrimaryKey(long pk)
           
 void setPriority(double priority)
           
 void setRootMessageId(long rootMessageId)
           
 void setThreadId(long threadId)
           
 void setViewCount(int viewCount)
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getPrimaryKeyObj, isNew, setNew
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getPrimaryKey

public long getPrimaryKey()

setPrimaryKey

public void setPrimaryKey(long pk)

getThreadId

public long getThreadId()

setThreadId

public void setThreadId(long threadId)

getCategoryId

public long getCategoryId()

setCategoryId

public void setCategoryId(long categoryId)

getRootMessageId

public long getRootMessageId()

setRootMessageId

public void setRootMessageId(long rootMessageId)

getMessageCount

public int getMessageCount()

setMessageCount

public void setMessageCount(int messageCount)

getViewCount

public int getViewCount()

setViewCount

public void setViewCount(int viewCount)

getLastPostByUserId

public long getLastPostByUserId()

setLastPostByUserId

public void setLastPostByUserId(long lastPostByUserId)

getLastPostDate

public java.util.Date getLastPostDate()

setLastPostDate

public void setLastPostDate(java.util.Date lastPostDate)

getPriority

public double getPriority()

setPriority

public void setPriority(double priority)