com.liferay.portlet.messageboards.model
Interface MBStatsUserModel

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

public interface MBStatsUserModel
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 MBStatsUser table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portlet.messageboards.service.model.MBStatsUser, com.liferay.portlet.messageboards.service.model.impl.MBStatsUserImpl, com.liferay.portlet.messageboards.service.model.impl.MBStatsUserModelImpl

Method Summary
 long getGroupId()
           
 java.util.Date getLastPostDate()
           
 int getMessageCount()
           
 long getPrimaryKey()
           
 long getStatsUserId()
           
 long getUserId()
           
 void setGroupId(long groupId)
           
 void setLastPostDate(java.util.Date lastPostDate)
           
 void setMessageCount(int messageCount)
           
 void setPrimaryKey(long pk)
           
 void setStatsUserId(long statsUserId)
           
 void setUserId(long userId)
           
 
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)

getStatsUserId

public long getStatsUserId()

setStatsUserId

public void setStatsUserId(long statsUserId)

getGroupId

public long getGroupId()

setGroupId

public void setGroupId(long groupId)

getUserId

public long getUserId()

setUserId

public void setUserId(long userId)

getMessageCount

public int getMessageCount()

setMessageCount

public void setMessageCount(int messageCount)

getLastPostDate

public java.util.Date getLastPostDate()

setLastPostDate

public void setLastPostDate(java.util.Date lastPostDate)