Interface CTEntryModel

All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<CTEntry>, com.liferay.portal.kernel.model.ClassedModel, Cloneable, Comparable<CTEntry>, com.liferay.portal.kernel.model.ExternalReferenceCodeModel, com.liferay.portal.kernel.model.MVCCModel, Serializable, com.liferay.portal.kernel.model.ShardedModel, com.liferay.portal.kernel.model.StagedModel
All Known Subinterfaces:
CTEntry
All Known Implementing Classes:
CTEntryWrapper

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

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

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    int
    Returns the change type of this ct entry.
    long
    Returns the company ID of this ct entry.
    Returns the create date of this ct entry.
    long
    Returns the ct collection ID of this ct entry.
    long
    Returns the ct entry ID of this ct entry.
    Returns the external reference code of this ct entry.
    long
    Returns the model class name ID of this ct entry.
    long
    Returns the model class pk of this ct entry.
    long
    Returns the model mvcc version of this ct entry.
    Returns the modified date of this ct entry.
    long
    Returns the mvcc version of this ct entry.
    long
    Returns the primary key of this ct entry.
    long
    Returns the user ID of this ct entry.
    Returns the user uuid of this ct entry.
    Returns the uuid of this ct entry.
    void
    setChangeType(int changeType)
    Sets the change type of this ct entry.
    void
    setCompanyId(long companyId)
    Sets the company ID of this ct entry.
    void
    setCreateDate(Date createDate)
    Sets the create date of this ct entry.
    void
    setCtCollectionId(long ctCollectionId)
    Sets the ct collection ID of this ct entry.
    void
    setCtEntryId(long ctEntryId)
    Sets the ct entry ID of this ct entry.
    void
    setExternalReferenceCode(String externalReferenceCode)
    Sets the external reference code of this ct entry.
    void
    setModelClassNameId(long modelClassNameId)
    Sets the model class name ID of this ct entry.
    void
    setModelClassPK(long modelClassPK)
    Sets the model class pk of this ct entry.
    void
    setModelMvccVersion(long modelMvccVersion)
    Sets the model mvcc version of this ct entry.
    void
    setModifiedDate(Date modifiedDate)
    Sets the modified date of this ct entry.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this ct entry.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this ct entry.
    void
    setUserId(long userId)
    Sets the user ID of this ct entry.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this ct entry.
    void
    Sets the uuid of this ct entry.
    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

    Methods inherited from interface com.liferay.portal.kernel.model.StagedModel

    clone, getStagedModelType
  • Method Details

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this ct entry.
      Returns:
      the primary key of this ct entry
    • setPrimaryKey

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

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

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

      @AutoEscape String getUuid()
      Returns the uuid of this ct entry.
      Specified by:
      getUuid in interface com.liferay.portal.kernel.model.StagedModel
      Returns:
      the uuid of this ct entry
    • setUuid

      void setUuid(String uuid)
      Sets the uuid of this ct entry.
      Specified by:
      setUuid in interface com.liferay.portal.kernel.model.StagedModel
      Parameters:
      uuid - the uuid of this ct entry
    • getExternalReferenceCode

      @AutoEscape String getExternalReferenceCode()
      Returns the external reference code of this ct entry.
      Specified by:
      getExternalReferenceCode in interface com.liferay.portal.kernel.model.ExternalReferenceCodeModel
      Returns:
      the external reference code of this ct entry
    • setExternalReferenceCode

      void setExternalReferenceCode(String externalReferenceCode)
      Sets the external reference code of this ct entry.
      Specified by:
      setExternalReferenceCode in interface com.liferay.portal.kernel.model.ExternalReferenceCodeModel
      Parameters:
      externalReferenceCode - the external reference code of this ct entry
    • getCtEntryId

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

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

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

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

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

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

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

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

      Date getCreateDate()
      Returns the create date of this ct entry.
      Specified by:
      getCreateDate in interface com.liferay.portal.kernel.model.StagedModel
      Returns:
      the create date of this ct entry
    • setCreateDate

      void setCreateDate(Date createDate)
      Sets the create date of this ct entry.
      Specified by:
      setCreateDate in interface com.liferay.portal.kernel.model.StagedModel
      Parameters:
      createDate - the create date of this ct entry
    • getModifiedDate

      Date getModifiedDate()
      Returns the modified date of this ct entry.
      Specified by:
      getModifiedDate in interface com.liferay.portal.kernel.model.StagedModel
      Returns:
      the modified date of this ct entry
    • setModifiedDate

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this ct entry.
      Specified by:
      setModifiedDate in interface com.liferay.portal.kernel.model.StagedModel
      Parameters:
      modifiedDate - the modified date of this ct entry
    • getCtCollectionId

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

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

      long getModelClassNameId()
      Returns the model class name ID of this ct entry.
      Returns:
      the model class name ID of this ct entry
    • setModelClassNameId

      void setModelClassNameId(long modelClassNameId)
      Sets the model class name ID of this ct entry.
      Parameters:
      modelClassNameId - the model class name ID of this ct entry
    • getModelClassPK

      long getModelClassPK()
      Returns the model class pk of this ct entry.
      Returns:
      the model class pk of this ct entry
    • setModelClassPK

      void setModelClassPK(long modelClassPK)
      Sets the model class pk of this ct entry.
      Parameters:
      modelClassPK - the model class pk of this ct entry
    • getModelMvccVersion

      long getModelMvccVersion()
      Returns the model mvcc version of this ct entry.
      Returns:
      the model mvcc version of this ct entry
    • setModelMvccVersion

      void setModelMvccVersion(long modelMvccVersion)
      Sets the model mvcc version of this ct entry.
      Parameters:
      modelMvccVersion - the model mvcc version of this ct entry
    • getChangeType

      int getChangeType()
      Returns the change type of this ct entry.
      Returns:
      the change type of this ct entry
    • setChangeType

      void setChangeType(int changeType)
      Sets the change type of this ct entry.
      Parameters:
      changeType - the change type of this ct entry
    • cloneWithOriginalValues

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

      default String toXmlString()