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:
com.liferay.portal.service.model.Organization, com.liferay.portal.service.model.impl.OrganizationImpl, com.liferay.portal.service.model.impl.OrganizationModelImpl

Method Summary
 java.lang.String getComments()
           
 long getCompanyId()
           
 long getCountryId()
           
 boolean getLocation()
           
 java.lang.String getName()
           
 long getOrganizationId()
           
 long getParentOrganizationId()
           
 long getPrimaryKey()
           
 boolean getRecursable()
           
 long getRegionId()
           
 int getStatusId()
           
 boolean isLocation()
           
 boolean isRecursable()
           
 void setComments(java.lang.String comments)
           
 void setCompanyId(long companyId)
           
 void setCountryId(long countryId)
           
 void setLocation(boolean location)
           
 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)
           
 Organization toEscapedModel()
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, 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)

getLocation

boolean getLocation()

isLocation

boolean isLocation()

setLocation

void setLocation(boolean location)

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()