Package com.liferay.expando.kernel.model
Interface ExpandoRowModel
- All Superinterfaces:
BaseModel<ExpandoRow>,ClassedModel,Cloneable,Comparable<ExpandoRow>,CTModel<ExpandoRow>,MVCCModel,Serializable,ShardedModel
- All Known Subinterfaces:
ExpandoRow
- All Known Implementing Classes:
ExpandoRowWrapper
@ProviderType
public interface ExpandoRowModel
extends BaseModel<ExpandoRow>, CTModel<ExpandoRow>, MVCCModel, ShardedModel
The base model interface for the ExpandoRow service. Represents a row in the "ExpandoRow" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portlet.expando.model.impl.ExpandoRowModelImpl 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.portlet.expando.model.impl.ExpandoRowImpl.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the class pk of this expando row.longReturns the company ID of this expando row.longReturns the ct collection ID of this expando row.Returns the modified date of this expando row.longReturns the mvcc version of this expando row.longReturns the primary key of this expando row.longgetRowId()Returns the row ID of this expando row.longReturns the table ID of this expando row.voidsetClassPK(long classPK) Sets the class pk of this expando row.voidsetCompanyId(long companyId) Sets the company ID of this expando row.voidsetCtCollectionId(long ctCollectionId) Sets the ct collection ID of this expando row.voidsetModifiedDate(Date modifiedDate) Sets the modified date of this expando row.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this expando row.voidsetPrimaryKey(long primaryKey) Sets the primary key of this expando row.voidsetRowId(long rowId) Sets the row ID of this expando row.voidsetTableId(long tableId) Sets the table ID of this expando row.default StringMethods 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, toUnescapedModelMethods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassNameMethods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
getPrimaryKey
long getPrimaryKey()Returns the primary key of this expando row.- Specified by:
getPrimaryKeyin interfaceCTModel<ExpandoRow>- Returns:
- the primary key of this expando row
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this expando row.- Specified by:
setPrimaryKeyin interfaceCTModel<ExpandoRow>- Parameters:
primaryKey- the primary key of this expando row
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this expando row.- Specified by:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this expando row
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this expando row.- Specified by:
setMvccVersionin interfaceMVCCModel- Parameters:
mvccVersion- the mvcc version of this expando row
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this expando row.- Specified by:
getCtCollectionIdin interfaceCTModel<ExpandoRow>- Returns:
- the ct collection ID of this expando row
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this expando row.- Specified by:
setCtCollectionIdin interfaceCTModel<ExpandoRow>- Parameters:
ctCollectionId- the ct collection ID of this expando row
-
getRowId
long getRowId()Returns the row ID of this expando row.- Returns:
- the row ID of this expando row
-
setRowId
void setRowId(long rowId) Sets the row ID of this expando row.- Parameters:
rowId- the row ID of this expando row
-
getCompanyId
long getCompanyId()Returns the company ID of this expando row.- Specified by:
getCompanyIdin interfaceShardedModel- Returns:
- the company ID of this expando row
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this expando row.- Specified by:
setCompanyIdin interfaceShardedModel- Parameters:
companyId- the company ID of this expando row
-
getModifiedDate
Date getModifiedDate()Returns the modified date of this expando row.- Returns:
- the modified date of this expando row
-
setModifiedDate
Sets the modified date of this expando row.- Parameters:
modifiedDate- the modified date of this expando row
-
getTableId
long getTableId()Returns the table ID of this expando row.- Returns:
- the table ID of this expando row
-
setTableId
void setTableId(long tableId) Sets the table ID of this expando row.- Parameters:
tableId- the table ID of this expando row
-
getClassPK
long getClassPK()Returns the class pk of this expando row.- Returns:
- the class pk of this expando row
-
setClassPK
void setClassPK(long classPK) Sets the class pk of this expando row.- Parameters:
classPK- the class pk of this expando row
-
cloneWithOriginalValues
ExpandoRow cloneWithOriginalValues()- Specified by:
cloneWithOriginalValuesin interfaceBaseModel<ExpandoRow>
-
toXmlString
-