com.liferay.portal.model
Interface GroupModel

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

public interface GroupModel
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 Group_ table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portal.service.model.Group, com.liferay.portal.service.model.impl.GroupImpl, com.liferay.portal.service.model.impl.GroupModelImpl

Method Summary
 boolean getActive()
           
 long getClassNameId()
           
 long getClassPK()
           
 long getCompanyId()
           
 long getCreatorUserId()
           
 java.lang.String getDescription()
           
 java.lang.String getFriendlyURL()
           
 long getGroupId()
           
 long getLiveGroupId()
           
 java.lang.String getName()
           
 long getParentGroupId()
           
 long getPrimaryKey()
           
 java.lang.String getType()
           
 java.lang.String getTypeSettings()
           
 boolean isActive()
           
 void setActive(boolean active)
           
 void setClassNameId(long classNameId)
           
 void setClassPK(long classPK)
           
 void setCompanyId(long companyId)
           
 void setCreatorUserId(long creatorUserId)
           
 void setDescription(java.lang.String description)
           
 void setFriendlyURL(java.lang.String friendlyURL)
           
 void setGroupId(long groupId)
           
 void setLiveGroupId(long liveGroupId)
           
 void setName(java.lang.String name)
           
 void setParentGroupId(long parentGroupId)
           
 void setPrimaryKey(long pk)
           
 void setType(java.lang.String type)
           
 void setTypeSettings(java.lang.String typeSettings)
           
 
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)

getGroupId

public long getGroupId()

setGroupId

public void setGroupId(long groupId)

getCompanyId

public long getCompanyId()

setCompanyId

public void setCompanyId(long companyId)

getCreatorUserId

public long getCreatorUserId()

setCreatorUserId

public void setCreatorUserId(long creatorUserId)

getClassNameId

public long getClassNameId()

setClassNameId

public void setClassNameId(long classNameId)

getClassPK

public long getClassPK()

setClassPK

public void setClassPK(long classPK)

getParentGroupId

public long getParentGroupId()

setParentGroupId

public void setParentGroupId(long parentGroupId)

getLiveGroupId

public long getLiveGroupId()

setLiveGroupId

public void setLiveGroupId(long liveGroupId)

getName

public java.lang.String getName()

setName

public void setName(java.lang.String name)

getDescription

public java.lang.String getDescription()

setDescription

public void setDescription(java.lang.String description)

getType

public java.lang.String getType()

setType

public void setType(java.lang.String type)

getTypeSettings

public java.lang.String getTypeSettings()

setTypeSettings

public void setTypeSettings(java.lang.String typeSettings)

getFriendlyURL

public java.lang.String getFriendlyURL()

setFriendlyURL

public void setFriendlyURL(java.lang.String friendlyURL)

getActive

public boolean getActive()

isActive

public boolean isActive()

setActive

public void setActive(boolean active)