Package com.liferay.portal.kernel.model
Interface CompanyInfoModel
- All Superinterfaces:
BaseModel<CompanyInfo>
,ClassedModel
,Cloneable
,Comparable<CompanyInfo>
,MVCCModel
,Serializable
,ShardedModel
- All Known Subinterfaces:
CompanyInfo
- All Known Implementing Classes:
CompanyInfoWrapper
@ProviderType
public interface CompanyInfoModel
extends BaseModel<CompanyInfo>, MVCCModel, ShardedModel
The base model interface for the CompanyInfo service. Represents a row in the "CompanyInfo" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.CompanyInfoModelImpl
exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.portal.model.impl.CompanyInfoImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this company info.long
Returns the company info ID of this company info.getKey()
Returns the key of this company info.long
Returns the mvcc version of this company info.long
Returns the primary key of this company info.void
setCompanyId
(long companyId) Sets the company ID of this company info.void
setCompanyInfoId
(long companyInfoId) Sets the company info ID of this company info.void
Sets the key of this company info.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this company info.void
setPrimaryKey
(long primaryKey) Sets the primary key of this company info.default String
Methods inherited from interface com.liferay.portal.kernel.model.BaseModel
clone, getAttributeGetterFunctions, getAttributeSetterBiConsumers, getExpandoBridge, getModelAttributes, getPrimaryKeyObj, isCachedModel, isEntityCacheEnabled, isEscapedModel, isFinderCacheEnabled, isNew, resetOriginalValues, setCachedModel, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setModelAttributes, setNew, setPrimaryKeyObj, toCacheModel, toEscapedModel, toUnescapedModel
Methods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassName
Methods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
getPrimaryKey
long getPrimaryKey()Returns the primary key of this company info.- Returns:
- the primary key of this company info
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this company info.- Parameters:
primaryKey
- the primary key of this company info
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this company info.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this company info
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this company info.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this company info
-
getCompanyInfoId
long getCompanyInfoId()Returns the company info ID of this company info.- Returns:
- the company info ID of this company info
-
setCompanyInfoId
void setCompanyInfoId(long companyInfoId) Sets the company info ID of this company info.- Parameters:
companyInfoId
- the company info ID of this company info
-
getCompanyId
long getCompanyId()Returns the company ID of this company info.- Specified by:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this company info
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this company info.- Specified by:
setCompanyId
in interfaceShardedModel
- Parameters:
companyId
- the company ID of this company info
-
getKey
Returns the key of this company info.- Returns:
- the key of this company info
-
setKey
Sets the key of this company info.- Parameters:
key
- the key of this company info
-
cloneWithOriginalValues
CompanyInfo cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<CompanyInfo>
-
toXmlString
-