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 Type
    Method
    Description
     
    long
    Returns the analytics message ID of this analytics message.
    Returns the body of this analytics message.
    long
    Returns the company ID of this analytics message.
    Returns the create date of this analytics message.
    long
    Returns the ct collection ID of this analytics message.
    long
    Returns the mvcc version of this analytics message.
    long
    Returns the primary key of this analytics message.
    long
    Returns the user ID of this analytics message.
    Returns the user name of this analytics message.
    Returns the user uuid of this analytics message.
    void
    setAnalyticsMessageId(long analyticsMessageId)
    Sets the analytics message ID of this analytics message.
    void
    setBody(Blob body)
    Sets the body of this analytics message.
    void
    setCompanyId(long companyId)
    Sets the company ID of this analytics message.
    void
    setCreateDate(Date createDate)
    Sets the create date of this analytics message.
    void
    setCtCollectionId(long ctCollectionId)
    Sets the ct collection ID of this analytics message.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this analytics message.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this analytics message.
    void
    setUserId(long userId)
    Sets the user ID of this analytics message.
    void
    setUserName(String userName)
    Sets the user name of this analytics message.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this analytics message.
    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 analytics message.
      Specified by:
      getPrimaryKey in interface com.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:
      setPrimaryKey in interface com.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:
      getMvccVersion in interface com.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:
      setMvccVersion in interface com.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:
      getCtCollectionId in interface com.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:
      setCtCollectionId in interface com.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:
      getCompanyId in interface com.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:
      setCompanyId in interface com.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

      void setUserUuid(String userUuid)
      Sets the user uuid of this analytics message.
      Parameters:
      userUuid - the user uuid of this analytics message
    • getUserName

      @AutoEscape String getUserName()
      Returns the user name of this analytics message.
      Returns:
      the user name of this analytics message
    • setUserName

      void setUserName(String userName)
      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

      void setCreateDate(Date createDate)
      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

      void setBody(Blob body)
      Sets the body of this analytics message.
      Parameters:
      body - the body of this analytics message
    • cloneWithOriginalValues

      AnalyticsMessage cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface com.liferay.portal.kernel.model.BaseModel<AnalyticsMessage>
    • toXmlString

      default String toXmlString()