com.liferay.portal.model
Interface OrganizationModel

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

public interface OrganizationModel
extends BaseModel<Organization>

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()
           
 long getLeftOrganizationId()
           
 boolean getLocation()
           
 java.lang.String getName()
           
 long getOrganizationId()
           
 long getParentOrganizationId()
           
 long getPrimaryKey()
           
 boolean getRecursable()
           
 long getRegionId()
           
 long getRightOrganizationId()
           
 int getStatusId()
           
 boolean isLocation()
           
 boolean isRecursable()
           
 void setComments(java.lang.String comments)
           
 void setCompanyId(long companyId)
           
 void setCountryId(long countryId)
           
 void setLeftOrganizationId(long leftOrganizationId)
           
 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 setRightOrganizationId(long rightOrganizationId)
           
 void setStatusId(int statusId)
           
 Organization toEscapedModel()
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getPrimaryKeyObj, isCachedModel, isEscapedModel, isNew, setCachedModel, setEscapedModel, setNew, toXmlString
 
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)

getLeftOrganizationId

long getLeftOrganizationId()

setLeftOrganizationId

void setLeftOrganizationId(long leftOrganizationId)

getRightOrganizationId

long getRightOrganizationId()

setRightOrganizationId

void setRightOrganizationId(long rightOrganizationId)

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