Interface AnalyticsMessageModel
- All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<AnalyticsMessage>,com.liferay.portal.kernel.model.ClassedModel,Cloneable,Comparable<AnalyticsMessage>,com.liferay.portal.kernel.model.change.tracking.CTModel<AnalyticsMessage>,com.liferay.portal.kernel.model.MVCCModel,Serializable,com.liferay.portal.kernel.model.ShardedModel
- All Known Subinterfaces:
AnalyticsMessage
- All Known Implementing Classes:
AnalyticsMessageWrapper
@ProviderType
public interface AnalyticsMessageModel
extends com.liferay.portal.kernel.model.BaseModel<AnalyticsMessage>, com.liferay.portal.kernel.model.change.tracking.CTModel<AnalyticsMessage>, com.liferay.portal.kernel.model.MVCCModel, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the AnalyticsMessage service. Represents a row in the "AnalyticsMessage" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.analytics.message.storage.model.impl.AnalyticsMessageModelImpl 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.analytics.message.storage.model.impl.AnalyticsMessageImpl.
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the analytics message ID of this analytics message.getBody()Returns the body of this analytics message.longReturns the company ID of this analytics message.Returns the create date of this analytics message.longReturns the ct collection ID of this analytics message.longReturns the mvcc version of this analytics message.longReturns the primary key of this analytics message.longReturns the user ID of this analytics message.Returns the user name of this analytics message.Returns the user uuid of this analytics message.voidsetAnalyticsMessageId(long analyticsMessageId) Sets the analytics message ID of this analytics message.voidSets the body of this analytics message.voidsetCompanyId(long companyId) Sets the company ID of this analytics message.voidsetCreateDate(Date createDate) Sets the create date of this analytics message.voidsetCtCollectionId(long ctCollectionId) Sets the ct collection ID of this analytics message.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this analytics message.voidsetPrimaryKey(long primaryKey) Sets the primary key of this analytics message.voidsetUserId(long userId) Sets the user ID of this analytics message.voidsetUserName(String userName) Sets the user name of this analytics message.voidsetUserUuid(String userUuid) Sets the user uuid of this analytics message.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 analytics message.- Specified by:
getPrimaryKeyin interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<AnalyticsMessage>- Returns:
- the primary key of this analytics message
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this analytics message.- Specified by:
setPrimaryKeyin interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<AnalyticsMessage>- Parameters:
primaryKey- the primary key of this analytics message
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this analytics message.- Specified by:
getMvccVersionin interfacecom.liferay.portal.kernel.model.MVCCModel- Returns:
- the mvcc version of this analytics message
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this analytics message.- Specified by:
setMvccVersionin interfacecom.liferay.portal.kernel.model.MVCCModel- Parameters:
mvccVersion- the mvcc version of this analytics message
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this analytics message.- Specified by:
getCtCollectionIdin interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<AnalyticsMessage>- Returns:
- the ct collection ID of this analytics message
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this analytics message.- Specified by:
setCtCollectionIdin interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<AnalyticsMessage>- Parameters:
ctCollectionId- the ct collection ID of this analytics message
-
getAnalyticsMessageId
long getAnalyticsMessageId()Returns the analytics message ID of this analytics message.- Returns:
- the analytics message ID of this analytics message
-
setAnalyticsMessageId
void setAnalyticsMessageId(long analyticsMessageId) Sets the analytics message ID of this analytics message.- Parameters:
analyticsMessageId- the analytics message ID of this analytics message
-
getCompanyId
long getCompanyId()Returns the company ID of this analytics message.- Specified by:
getCompanyIdin interfacecom.liferay.portal.kernel.model.ShardedModel- Returns:
- the company ID of this analytics message
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this analytics message.- Specified by:
setCompanyIdin interfacecom.liferay.portal.kernel.model.ShardedModel- Parameters:
companyId- the company ID of this analytics message
-
getUserId
long getUserId()Returns the user ID of this analytics message.- Returns:
- the user ID of this analytics message
-
setUserId
void setUserId(long userId) Sets the user ID of this analytics message.- Parameters:
userId- the user ID of this analytics message
-
getUserUuid
String getUserUuid()Returns the user uuid of this analytics message.- Returns:
- the user uuid of this analytics message
-
setUserUuid
Sets the user uuid of this analytics message.- Parameters:
userUuid- the user uuid of this analytics message
-
getUserName
Returns the user name of this analytics message.- Returns:
- the user name of this analytics message
-
setUserName
Sets the user name of this analytics message.- Parameters:
userName- the user name of this analytics message
-
getCreateDate
Date getCreateDate()Returns the create date of this analytics message.- Returns:
- the create date of this analytics message
-
setCreateDate
Sets the create date of this analytics message.- Parameters:
createDate- the create date of this analytics message
-
getBody
Blob getBody()Returns the body of this analytics message.- Returns:
- the body of this analytics message
-
setBody
Sets the body of this analytics message.- Parameters:
body- the body of this analytics message
-
cloneWithOriginalValues
AnalyticsMessage cloneWithOriginalValues()- Specified by:
cloneWithOriginalValuesin interfacecom.liferay.portal.kernel.model.BaseModel<AnalyticsMessage>
-
toXmlString
-