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:
MBThread, com.liferay.portlet.messageboards.model.impl.MBThreadImpl, com.liferay.portlet.messageboards.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)
           
 MBThread toEscapedModel()
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getExpandoBridge, getPrimaryKeyObj, isEscapedModel, isNew, setEscapedModel, setNew
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getPrimaryKey

long getPrimaryKey()

setPrimaryKey

void setPrimaryKey(long pk)

getThreadId

long getThreadId()

setThreadId

void setThreadId(long threadId)

getCategoryId

long getCategoryId()

setCategoryId

void setCategoryId(long categoryId)

getRootMessageId

long getRootMessageId()

setRootMessageId

void setRootMessageId(long rootMessageId)

getMessageCount

int getMessageCount()

setMessageCount

void setMessageCount(int messageCount)

getViewCount

int getViewCount()

setViewCount

void setViewCount(int viewCount)

getLastPostByUserId

long getLastPostByUserId()

setLastPostByUserId

void setLastPostByUserId(long lastPostByUserId)

getLastPostDate

java.util.Date getLastPostDate()

setLastPostDate

void setLastPostDate(java.util.Date lastPostDate)

getPriority

double getPriority()

setPriority

void setPriority(double priority)

toEscapedModel

MBThread toEscapedModel()