Interface CTSchemaVersionModel
- All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<CTSchemaVersion>
,com.liferay.portal.kernel.model.ClassedModel
,Cloneable
,Comparable<CTSchemaVersion>
,com.liferay.portal.kernel.model.MVCCModel
,Serializable
,com.liferay.portal.kernel.model.ShardedModel
- All Known Subinterfaces:
CTSchemaVersion
- All Known Implementing Classes:
CTSchemaVersionWrapper
@ProviderType
public interface CTSchemaVersionModel
extends com.liferay.portal.kernel.model.BaseModel<CTSchemaVersion>, com.liferay.portal.kernel.model.MVCCModel, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the CTSchemaVersion service. Represents a row in the "CTSchemaVersion" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.change.tracking.model.impl.CTSchemaVersionModelImpl
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.change.tracking.model.impl.CTSchemaVersionImpl
.
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this ct schema version.long
Returns the mvcc version of this ct schema version.long
Returns the primary key of this ct schema version.Returns the schema context of this ct schema version.long
Returns the schema version ID of this ct schema version.void
setCompanyId
(long companyId) Sets the company ID of this ct schema version.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this ct schema version.void
setPrimaryKey
(long primaryKey) Sets the primary key of this ct schema version.void
setSchemaContext
(Map<String, Serializable> schemaContext) Sets the schema context of this ct schema version.void
setSchemaVersionId
(long schemaVersionId) Sets the schema version ID of this ct schema version.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 ct schema version.- Returns:
- the primary key of this ct schema version
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this ct schema version.- Parameters:
primaryKey
- the primary key of this ct schema version
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this ct schema version.- Specified by:
getMvccVersion
in interfacecom.liferay.portal.kernel.model.MVCCModel
- Returns:
- the mvcc version of this ct schema version
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this ct schema version.- Specified by:
setMvccVersion
in interfacecom.liferay.portal.kernel.model.MVCCModel
- Parameters:
mvccVersion
- the mvcc version of this ct schema version
-
getSchemaVersionId
long getSchemaVersionId()Returns the schema version ID of this ct schema version.- Returns:
- the schema version ID of this ct schema version
-
setSchemaVersionId
void setSchemaVersionId(long schemaVersionId) Sets the schema version ID of this ct schema version.- Parameters:
schemaVersionId
- the schema version ID of this ct schema version
-
getCompanyId
long getCompanyId()Returns the company ID of this ct schema version.- Specified by:
getCompanyId
in interfacecom.liferay.portal.kernel.model.ShardedModel
- Returns:
- the company ID of this ct schema version
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this ct schema version.- Specified by:
setCompanyId
in interfacecom.liferay.portal.kernel.model.ShardedModel
- Parameters:
companyId
- the company ID of this ct schema version
-
getSchemaContext
Map<String,Serializable> getSchemaContext()Returns the schema context of this ct schema version.- Returns:
- the schema context of this ct schema version
-
setSchemaContext
Sets the schema context of this ct schema version.- Parameters:
schemaContext
- the schema context of this ct schema version
-
cloneWithOriginalValues
CTSchemaVersion cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfacecom.liferay.portal.kernel.model.BaseModel<CTSchemaVersion>
-
toXmlString
-