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 TypeMethodDescriptionlong
Returns the class pk of this expando row.long
Returns the company ID of this expando row.long
Returns the ct collection ID of this expando row.Returns the modified date of this expando row.long
Returns the mvcc version of this expando row.long
Returns the primary key of this expando row.long
getRowId()
Returns the row ID of this expando row.long
Returns the table ID of this expando row.void
setClassPK
(long classPK) Sets the class pk of this expando row.void
setCompanyId
(long companyId) Sets the company ID of this expando row.void
setCtCollectionId
(long ctCollectionId) Sets the ct collection ID of this expando row.void
setModifiedDate
(Date modifiedDate) Sets the modified date of this expando row.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this expando row.void
setPrimaryKey
(long primaryKey) Sets the primary key of this expando row.void
setRowId
(long rowId) Sets the row ID of this expando row.void
setTableId
(long tableId) Sets the table ID of this expando row.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 expando row.- Specified by:
getPrimaryKey
in 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:
setPrimaryKey
in interfaceCTModel<ExpandoRow>
- Parameters:
primaryKey
- the primary key of this expando row
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this expando row.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this expando row
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this expando row.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this expando row
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this expando row.- Specified by:
getCtCollectionId
in 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:
setCtCollectionId
in 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:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this expando row
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this expando row.- Specified by:
setCompanyId
in 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:
cloneWithOriginalValues
in interfaceBaseModel<ExpandoRow>
-
toXmlString
-