com.liferay.portal.model
Interface OrganizationModel

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

public interface OrganizationModel
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 Organization table in the database.

Author:
Brian Wing Shun Chan
See Also:
Organization, OrganizationImpl, OrganizationModelImpl

Method Summary
 java.lang.String getComments()
           
 long getCompanyId()
           
 long getCountryId()
           
 java.lang.String getName()
           
 long getOrganizationId()
           
 long getParentOrganizationId()
           
 long getPrimaryKey()
           
 boolean getRecursable()
           
 long getRegionId()
           
 int getStatusId()
           
 java.lang.String getType()
           
 boolean isRecursable()
           
 void setComments(java.lang.String comments)
           
 void setCompanyId(long companyId)
           
 void setCountryId(long countryId)
           
 void setName(java.lang.String name)
           
 void setOrganizationId(long organizationId)
           
 void setParentOrganizationId(long parentOrganizationId)
           
 void setPrimaryKey(long pk)
           
 void setRecursable(boolean recursable)
           
 void setRegionId(long regionId)
           
 void setStatusId(int statusId)
           
 void setType(java.lang.String type)
           
 Organization 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)

getOrganizationId

long getOrganizationId()

setOrganizationId

void setOrganizationId(long organizationId)

getCompanyId

long getCompanyId()

setCompanyId

void setCompanyId(long companyId)

getParentOrganizationId

long getParentOrganizationId()

setParentOrganizationId

void setParentOrganizationId(long parentOrganizationId)

getName

java.lang.String getName()

setName

void setName(java.lang.String name)

getType

java.lang.String getType()

setType

void setType(java.lang.String type)

getRecursable

boolean getRecursable()

isRecursable

boolean isRecursable()

setRecursable

void setRecursable(boolean recursable)

getRegionId

long getRegionId()

setRegionId

void setRegionId(long regionId)

getCountryId

long getCountryId()

setCountryId

void setCountryId(long countryId)

getStatusId

int getStatusId()

setStatusId

void setStatusId(int statusId)

getComments

java.lang.String getComments()

setComments

void setComments(java.lang.String comments)

toEscapedModel

Organization toEscapedModel()