Interface CTCommentModel

All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<CTComment>, com.liferay.portal.kernel.model.ClassedModel, Cloneable, Comparable<CTComment>, com.liferay.portal.kernel.model.MVCCModel, Serializable, com.liferay.portal.kernel.model.ShardedModel
All Known Subinterfaces:
CTComment
All Known Implementing Classes:
CTCommentWrapper

@ProviderType public interface CTCommentModel extends com.liferay.portal.kernel.model.BaseModel<CTComment>, com.liferay.portal.kernel.model.MVCCModel, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the CTComment service. Represents a row in the "CTComment" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.change.tracking.model.impl.CTCommentModelImpl 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.CTCommentImpl.

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this ct comment.
    Returns the create date of this ct comment.
    long
    Returns the ct collection ID of this ct comment.
    long
    Returns the ct comment ID of this ct comment.
    long
    Returns the ct entry ID of this ct comment.
    Returns the modified date of this ct comment.
    long
    Returns the mvcc version of this ct comment.
    long
    Returns the primary key of this ct comment.
    long
    Returns the user ID of this ct comment.
    Returns the user uuid of this ct comment.
    Returns the value of this ct comment.
    void
    setCompanyId(long companyId)
    Sets the company ID of this ct comment.
    void
    setCreateDate(Date createDate)
    Sets the create date of this ct comment.
    void
    setCtCollectionId(long ctCollectionId)
    Sets the ct collection ID of this ct comment.
    void
    setCtCommentId(long ctCommentId)
    Sets the ct comment ID of this ct comment.
    void
    setCtEntryId(long ctEntryId)
    Sets the ct entry ID of this ct comment.
    void
    setModifiedDate(Date modifiedDate)
    Sets the modified date of this ct comment.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this ct comment.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this ct comment.
    void
    setUserId(long userId)
    Sets the user ID of this ct comment.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this ct comment.
    void
    Sets the value of this ct comment.
    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 comment.
      Returns:
      the primary key of this ct comment
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this ct comment.
      Parameters:
      primaryKey - the primary key of this ct comment
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this ct comment.
      Specified by:
      getMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
      Returns:
      the mvcc version of this ct comment
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this ct comment.
      Specified by:
      setMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this ct comment
    • getCtCommentId

      long getCtCommentId()
      Returns the ct comment ID of this ct comment.
      Returns:
      the ct comment ID of this ct comment
    • setCtCommentId

      void setCtCommentId(long ctCommentId)
      Sets the ct comment ID of this ct comment.
      Parameters:
      ctCommentId - the ct comment ID of this ct comment
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this ct comment.
      Specified by:
      getCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Returns:
      the company ID of this ct comment
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this ct comment.
      Specified by:
      setCompanyId in interface com.liferay.portal.kernel.model.ShardedModel
      Parameters:
      companyId - the company ID of this ct comment
    • getUserId

      long getUserId()
      Returns the user ID of this ct comment.
      Returns:
      the user ID of this ct comment
    • setUserId

      void setUserId(long userId)
      Sets the user ID of this ct comment.
      Parameters:
      userId - the user ID of this ct comment
    • getUserUuid

      String getUserUuid()
      Returns the user uuid of this ct comment.
      Returns:
      the user uuid of this ct comment
    • setUserUuid

      void setUserUuid(String userUuid)
      Sets the user uuid of this ct comment.
      Parameters:
      userUuid - the user uuid of this ct comment
    • getCreateDate

      Date getCreateDate()
      Returns the create date of this ct comment.
      Returns:
      the create date of this ct comment
    • setCreateDate

      void setCreateDate(Date createDate)
      Sets the create date of this ct comment.
      Parameters:
      createDate - the create date of this ct comment
    • getModifiedDate

      Date getModifiedDate()
      Returns the modified date of this ct comment.
      Returns:
      the modified date of this ct comment
    • setModifiedDate

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this ct comment.
      Parameters:
      modifiedDate - the modified date of this ct comment
    • getCtCollectionId

      long getCtCollectionId()
      Returns the ct collection ID of this ct comment.
      Returns:
      the ct collection ID of this ct comment
    • setCtCollectionId

      void setCtCollectionId(long ctCollectionId)
      Sets the ct collection ID of this ct comment.
      Parameters:
      ctCollectionId - the ct collection ID of this ct comment
    • getCtEntryId

      long getCtEntryId()
      Returns the ct entry ID of this ct comment.
      Returns:
      the ct entry ID of this ct comment
    • setCtEntryId

      void setCtEntryId(long ctEntryId)
      Sets the ct entry ID of this ct comment.
      Parameters:
      ctEntryId - the ct entry ID of this ct comment
    • getValue

      @AutoEscape String getValue()
      Returns the value of this ct comment.
      Returns:
      the value of this ct comment
    • setValue

      void setValue(String value)
      Sets the value of this ct comment.
      Parameters:
      value - the value of this ct comment
    • cloneWithOriginalValues

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

      default String toXmlString()