com.liferay.portlet.messageboards.model
Interface MBCategoryModel

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

public interface MBCategoryModel
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 MBCategory table in the database.

Author:
Brian Wing Shun Chan
See Also:
MBCategory, com.liferay.portlet.messageboards.model.impl.MBCategoryImpl, com.liferay.portlet.messageboards.model.impl.MBCategoryModelImpl

Method Summary
 long getCategoryId()
           
 long getCompanyId()
           
 java.util.Date getCreateDate()
           
 java.lang.String getDescription()
           
 long getGroupId()
           
 java.util.Date getLastPostDate()
           
 java.util.Date getModifiedDate()
           
 java.lang.String getName()
           
 long getParentCategoryId()
           
 long getPrimaryKey()
           
 long getUserId()
           
 java.lang.String getUserName()
           
 java.lang.String getUuid()
           
 void setCategoryId(long categoryId)
           
 void setCompanyId(long companyId)
           
 void setCreateDate(java.util.Date createDate)
           
 void setDescription(java.lang.String description)
           
 void setGroupId(long groupId)
           
 void setLastPostDate(java.util.Date lastPostDate)
           
 void setModifiedDate(java.util.Date modifiedDate)
           
 void setName(java.lang.String name)
           
 void setParentCategoryId(long parentCategoryId)
           
 void setPrimaryKey(long pk)
           
 void setUserId(long userId)
           
 void setUserName(java.lang.String userName)
           
 void setUuid(java.lang.String uuid)
           
 MBCategory 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)

getUuid

java.lang.String getUuid()

setUuid

void setUuid(java.lang.String uuid)

getCategoryId

long getCategoryId()

setCategoryId

void setCategoryId(long categoryId)

getGroupId

long getGroupId()

setGroupId

void setGroupId(long groupId)

getCompanyId

long getCompanyId()

setCompanyId

void setCompanyId(long companyId)

getUserId

long getUserId()

setUserId

void setUserId(long userId)

getUserName

java.lang.String getUserName()

setUserName

void setUserName(java.lang.String userName)

getCreateDate

java.util.Date getCreateDate()

setCreateDate

void setCreateDate(java.util.Date createDate)

getModifiedDate

java.util.Date getModifiedDate()

setModifiedDate

void setModifiedDate(java.util.Date modifiedDate)

getParentCategoryId

long getParentCategoryId()

setParentCategoryId

void setParentCategoryId(long parentCategoryId)

getName

java.lang.String getName()

setName

void setName(java.lang.String name)

getDescription

java.lang.String getDescription()

setDescription

void setDescription(java.lang.String description)

getLastPostDate

java.util.Date getLastPostDate()

setLastPostDate

void setLastPostDate(java.util.Date lastPostDate)

toEscapedModel

MBCategory toEscapedModel()