Interface CTCollectionTemplateModel

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

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

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

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the company ID of this ct collection template.
    Returns the create date of this ct collection template.
    long
    Returns the ct collection template ID of this ct collection template.
    Returns the description of this ct collection template.
    Returns the modified date of this ct collection template.
    long
    Returns the mvcc version of this ct collection template.
    Returns the name of this ct collection template.
    long
    Returns the primary key of this ct collection template.
    long
    Returns the user ID of this ct collection template.
    Returns the user uuid of this ct collection template.
    void
    setCompanyId(long companyId)
    Sets the company ID of this ct collection template.
    void
    setCreateDate(Date createDate)
    Sets the create date of this ct collection template.
    void
    setCtCollectionTemplateId(long ctCollectionTemplateId)
    Sets the ct collection template ID of this ct collection template.
    void
    setDescription(String description)
    Sets the description of this ct collection template.
    void
    setModifiedDate(Date modifiedDate)
    Sets the modified date of this ct collection template.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this ct collection template.
    void
    Sets the name of this ct collection template.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this ct collection template.
    void
    setUserId(long userId)
    Sets the user ID of this ct collection template.
    void
    setUserUuid(String userUuid)
    Sets the user uuid of this ct collection template.
    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 collection template.
      Returns:
      the primary key of this ct collection template
    • setPrimaryKey

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

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

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

      long getCtCollectionTemplateId()
      Returns the ct collection template ID of this ct collection template.
      Returns:
      the ct collection template ID of this ct collection template
    • setCtCollectionTemplateId

      void setCtCollectionTemplateId(long ctCollectionTemplateId)
      Sets the ct collection template ID of this ct collection template.
      Parameters:
      ctCollectionTemplateId - the ct collection template ID of this ct collection template
    • getCompanyId

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

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

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

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

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

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

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

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

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

      void setModifiedDate(Date modifiedDate)
      Sets the modified date of this ct collection template.
      Parameters:
      modifiedDate - the modified date of this ct collection template
    • getName

      @AutoEscape String getName()
      Returns the name of this ct collection template.
      Returns:
      the name of this ct collection template
    • setName

      void setName(String name)
      Sets the name of this ct collection template.
      Parameters:
      name - the name of this ct collection template
    • getDescription

      @AutoEscape String getDescription()
      Returns the description of this ct collection template.
      Returns:
      the description of this ct collection template
    • setDescription

      void setDescription(String description)
      Sets the description of this ct collection template.
      Parameters:
      description - the description of this ct collection template
    • cloneWithOriginalValues

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

      default String toXmlString()