Liferay 6.1.2-ce-ga3

com.liferay.portal.model
Interface OrganizationModel

All Superinterfaces:
BaseModel<Organization>, ClassedModel, Cloneable, Comparable<Organization>, Serializable
All Known Subinterfaces:
Organization
All Known Implementing Classes:
OrganizationWrapper

public interface OrganizationModel
extends BaseModel<Organization>

The base model interface for the Organization service. Represents a row in the "Organization_" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation OrganizationModelImpl exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in OrganizationImpl.

See Also:
Organization, OrganizationImpl, OrganizationModelImpl

Method Summary
 Object clone()
          Creates a shallow clone of this model instance.
 int compareTo(Organization organization)
           
 String getComments()
          Returns the comments of this organization.
 long getCompanyId()
          Returns the company ID of this organization.
 long getCountryId()
          Returns the country ID of this organization.
 ExpandoBridge getExpandoBridge()
          Returns the expando bridge for this model instance.
 String getName()
          Returns the name of this organization.
 long getOrganizationId()
          Returns the organization ID of this organization.
 long getParentOrganizationId()
          Returns the parent organization ID of this organization.
 long getPrimaryKey()
          Returns the primary key of this organization.
 Serializable getPrimaryKeyObj()
          Returns the primary key of this model instance.
 boolean getRecursable()
          Returns the recursable of this organization.
 long getRegionId()
          Returns the region ID of this organization.
 int getStatusId()
          Returns the status ID of this organization.
 String getTreePath()
          Returns the tree path of this organization.
 String getType()
          Returns the type of this organization.
 int hashCode()
           
 boolean isCachedModel()
          Returns true if this model instance was retrieved from the entity cache.
 boolean isEscapedModel()
          Returns true if this model instance is escaped.
 boolean isNew()
          Returns true if this model instance does not yet exist in the database.
 boolean isRecursable()
          Returns true if this organization is recursable.
 void setCachedModel(boolean cachedModel)
          Sets whether this model instance was retrieved from the entity cache.
 void setComments(String comments)
          Sets the comments of this organization.
 void setCompanyId(long companyId)
          Sets the company ID of this organization.
 void setCountryId(long countryId)
          Sets the country ID of this organization.
 void setExpandoBridgeAttributes(ServiceContext serviceContext)
          Sets the expando bridge attributes for this model instance to the attributes stored in the service context.
 void setName(String name)
          Sets the name of this organization.
 void setNew(boolean n)
          Sets whether this model instance does not yet exist in the database.
 void setOrganizationId(long organizationId)
          Sets the organization ID of this organization.
 void setParentOrganizationId(long parentOrganizationId)
          Sets the parent organization ID of this organization.
 void setPrimaryKey(long primaryKey)
          Sets the primary key of this organization.
 void setPrimaryKeyObj(Serializable primaryKeyObj)
          Sets the primary key of this model instance.
 void setRecursable(boolean recursable)
          Sets whether this organization is recursable.
 void setRegionId(long regionId)
          Sets the region ID of this organization.
 void setStatusId(int statusId)
          Sets the status ID of this organization.
 void setTreePath(String treePath)
          Sets the tree path of this organization.
 void setType(String type)
          Sets the type of this organization.
 CacheModel<Organization> toCacheModel()
          Returns a cache model object for this entity used by entity cache.
 Organization toEscapedModel()
          Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
 String toString()
           
 Organization toUnescapedModel()
           
 String toXmlString()
          Returns the XML representation of this model instance.
 
Methods inherited from interface com.liferay.portal.model.BaseModel
getModelAttributes, resetOriginalValues, setModelAttributes
 
Methods inherited from interface com.liferay.portal.model.ClassedModel
getModelClass, getModelClassName
 

Method Detail

getPrimaryKey

long getPrimaryKey()
Returns the primary key of this organization.

Returns:
the primary key of this organization

setPrimaryKey

void setPrimaryKey(long primaryKey)
Sets the primary key of this organization.

Parameters:
primaryKey - the primary key of this organization

getOrganizationId

long getOrganizationId()
Returns the organization ID of this organization.

Returns:
the organization ID of this organization

setOrganizationId

void setOrganizationId(long organizationId)
Sets the organization ID of this organization.

Parameters:
organizationId - the organization ID of this organization

getCompanyId

long getCompanyId()
Returns the company ID of this organization.

Returns:
the company ID of this organization

setCompanyId

void setCompanyId(long companyId)
Sets the company ID of this organization.

Parameters:
companyId - the company ID of this organization

getParentOrganizationId

long getParentOrganizationId()
Returns the parent organization ID of this organization.

Returns:
the parent organization ID of this organization

setParentOrganizationId

void setParentOrganizationId(long parentOrganizationId)
Sets the parent organization ID of this organization.

Parameters:
parentOrganizationId - the parent organization ID of this organization

getTreePath

@AutoEscape
String getTreePath()
Returns the tree path of this organization.

Returns:
the tree path of this organization

setTreePath

void setTreePath(String treePath)
Sets the tree path of this organization.

Parameters:
treePath - the tree path of this organization

getName

@AutoEscape
String getName()
Returns the name of this organization.

Returns:
the name of this organization

setName

void setName(String name)
Sets the name of this organization.

Parameters:
name - the name of this organization

getType

String getType()
Returns the type of this organization.

Returns:
the type of this organization

setType

void setType(String type)
Sets the type of this organization.

Parameters:
type - the type of this organization

getRecursable

boolean getRecursable()
Returns the recursable of this organization.

Returns:
the recursable of this organization

isRecursable

boolean isRecursable()
Returns true if this organization is recursable.

Returns:
true if this organization is recursable; false otherwise

setRecursable

void setRecursable(boolean recursable)
Sets whether this organization is recursable.

Parameters:
recursable - the recursable of this organization

getRegionId

long getRegionId()
Returns the region ID of this organization.

Returns:
the region ID of this organization

setRegionId

void setRegionId(long regionId)
Sets the region ID of this organization.

Parameters:
regionId - the region ID of this organization

getCountryId

long getCountryId()
Returns the country ID of this organization.

Returns:
the country ID of this organization

setCountryId

void setCountryId(long countryId)
Sets the country ID of this organization.

Parameters:
countryId - the country ID of this organization

getStatusId

int getStatusId()
Returns the status ID of this organization.

Returns:
the status ID of this organization

setStatusId

void setStatusId(int statusId)
Sets the status ID of this organization.

Parameters:
statusId - the status ID of this organization

getComments

@AutoEscape
String getComments()
Returns the comments of this organization.

Returns:
the comments of this organization

setComments

void setComments(String comments)
Sets the comments of this organization.

Parameters:
comments - the comments of this organization

isNew

boolean isNew()
Description copied from interface: BaseModel
Returns true if this model instance does not yet exist in the database.

Specified by:
isNew in interface BaseModel<Organization>
Returns:
true if this model instance does not yet exist in the database; false otherwise

setNew

void setNew(boolean n)
Description copied from interface: BaseModel
Sets whether this model instance does not yet exist in the database.

Specified by:
setNew in interface BaseModel<Organization>
Parameters:
n - whether this model instance does not yet exist in the database

isCachedModel

boolean isCachedModel()
Description copied from interface: BaseModel
Returns true if this model instance was retrieved from the entity cache.

Specified by:
isCachedModel in interface BaseModel<Organization>
Returns:
true if this model instance was retrieved from the entity cache; false otherwise
See Also:
BaseModel.setCachedModel(boolean)

setCachedModel

void setCachedModel(boolean cachedModel)
Description copied from interface: BaseModel
Sets whether this model instance was retrieved from the entity cache.

Specified by:
setCachedModel in interface BaseModel<Organization>
Parameters:
cachedModel - whether this model instance was retrieved from the entity cache
See Also:
EntityCache

isEscapedModel

boolean isEscapedModel()
Description copied from interface: BaseModel
Returns true if this model instance is escaped.

Specified by:
isEscapedModel in interface BaseModel<Organization>
Returns:
true if this model instance is escaped; false otherwise

getPrimaryKeyObj

Serializable getPrimaryKeyObj()
Description copied from interface: BaseModel
Returns the primary key of this model instance.

Specified by:
getPrimaryKeyObj in interface BaseModel<Organization>
Specified by:
getPrimaryKeyObj in interface ClassedModel
Returns:
the primary key of this model instance

setPrimaryKeyObj

void setPrimaryKeyObj(Serializable primaryKeyObj)
Description copied from interface: BaseModel
Sets the primary key of this model instance.

Specified by:
setPrimaryKeyObj in interface BaseModel<Organization>
Specified by:
setPrimaryKeyObj in interface ClassedModel
Parameters:
primaryKeyObj - the primary key of this model instance

getExpandoBridge

ExpandoBridge getExpandoBridge()
Description copied from interface: BaseModel
Returns the expando bridge for this model instance.

Specified by:
getExpandoBridge in interface BaseModel<Organization>
Specified by:
getExpandoBridge in interface ClassedModel
Returns:
the expando bridge for this model instance

setExpandoBridgeAttributes

void setExpandoBridgeAttributes(ServiceContext serviceContext)
Description copied from interface: BaseModel
Sets the expando bridge attributes for this model instance to the attributes stored in the service context.

Specified by:
setExpandoBridgeAttributes in interface BaseModel<Organization>
Parameters:
serviceContext - the service context
See Also:
ServiceContext.getExpandoBridgeAttributes( )

clone

Object clone()
Description copied from interface: BaseModel
Creates a shallow clone of this model instance.

Specified by:
clone in interface BaseModel<Organization>
Returns:
the shallow clone of this model instance

compareTo

int compareTo(Organization organization)
Specified by:
compareTo in interface Comparable<Organization>

hashCode

int hashCode()
Overrides:
hashCode in class Object

toCacheModel

CacheModel<Organization> toCacheModel()
Description copied from interface: BaseModel
Returns a cache model object for this entity used by entity cache.

Specified by:
toCacheModel in interface BaseModel<Organization>
Returns:
the cache model object

toEscapedModel

Organization toEscapedModel()
Description copied from interface: BaseModel
Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.

Specified by:
toEscapedModel in interface BaseModel<Organization>
Returns:
the escaped model instance
See Also:
AutoEscapeBeanHandler

toUnescapedModel

Organization toUnescapedModel()
Specified by:
toUnescapedModel in interface BaseModel<Organization>

toString

String toString()
Overrides:
toString in class Object

toXmlString

String toXmlString()
Description copied from interface: BaseModel
Returns the XML representation of this model instance.

Specified by:
toXmlString in interface BaseModel<Organization>
Returns:
the XML representation of this model instance

Liferay 6.1.2-ce-ga3