Package com.liferay.expando.kernel.model
Interface ExpandoTableModel
- All Superinterfaces:
BaseModel<ExpandoTable>
,ClassedModel
,Cloneable
,Comparable<ExpandoTable>
,CTModel<ExpandoTable>
,MVCCModel
,Serializable
,ShardedModel
,TypedModel
- All Known Subinterfaces:
ExpandoTable
- All Known Implementing Classes:
ExpandoTableWrapper
@ProviderType
public interface ExpandoTableModel
extends BaseModel<ExpandoTable>, CTModel<ExpandoTable>, MVCCModel, ShardedModel, TypedModel
The base model interface for the ExpandoTable service. Represents a row in the "ExpandoTable" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portlet.expando.model.impl.ExpandoTableModelImpl
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.ExpandoTableImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionReturns the fully qualified class name of this expando table.long
Returns the class name ID of this expando table.long
Returns the company ID of this expando table.long
Returns the ct collection ID of this expando table.long
Returns the mvcc version of this expando table.getName()
Returns the name of this expando table.long
Returns the primary key of this expando table.long
Returns the table ID of this expando table.void
setClassName
(String className) void
setClassNameId
(long classNameId) Sets the class name ID of this expando table.void
setCompanyId
(long companyId) Sets the company ID of this expando table.void
setCtCollectionId
(long ctCollectionId) Sets the ct collection ID of this expando table.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this expando table.void
Sets the name of this expando table.void
setPrimaryKey
(long primaryKey) Sets the primary key of this expando table.void
setTableId
(long tableId) Sets the table ID of this expando table.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 table.- Specified by:
getPrimaryKey
in interfaceCTModel<ExpandoTable>
- Returns:
- the primary key of this expando table
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this expando table.- Specified by:
setPrimaryKey
in interfaceCTModel<ExpandoTable>
- Parameters:
primaryKey
- the primary key of this expando table
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this expando table.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this expando table
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this expando table.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this expando table
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this expando table.- Specified by:
getCtCollectionId
in interfaceCTModel<ExpandoTable>
- Returns:
- the ct collection ID of this expando table
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this expando table.- Specified by:
setCtCollectionId
in interfaceCTModel<ExpandoTable>
- Parameters:
ctCollectionId
- the ct collection ID of this expando table
-
getTableId
long getTableId()Returns the table ID of this expando table.- Returns:
- the table ID of this expando table
-
setTableId
void setTableId(long tableId) Sets the table ID of this expando table.- Parameters:
tableId
- the table ID of this expando table
-
getCompanyId
long getCompanyId()Returns the company ID of this expando table.- Specified by:
getCompanyId
in interfaceShardedModel
- Returns:
- the company ID of this expando table
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this expando table.- Specified by:
setCompanyId
in interfaceShardedModel
- Parameters:
companyId
- the company ID of this expando table
-
getClassName
String getClassName()Returns the fully qualified class name of this expando table.- Specified by:
getClassName
in interfaceTypedModel
- Returns:
- the fully qualified class name of this expando table
-
setClassName
-
getClassNameId
long getClassNameId()Returns the class name ID of this expando table.- Specified by:
getClassNameId
in interfaceTypedModel
- Returns:
- the class name ID of this expando table
-
setClassNameId
void setClassNameId(long classNameId) Sets the class name ID of this expando table.- Specified by:
setClassNameId
in interfaceTypedModel
- Parameters:
classNameId
- the class name ID of this expando table
-
getName
Returns the name of this expando table.- Returns:
- the name of this expando table
-
setName
Sets the name of this expando table.- Parameters:
name
- the name of this expando table
-
cloneWithOriginalValues
ExpandoTable cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<ExpandoTable>
-
toXmlString
-