Interface CTermEntryLocalizationModel

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

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

This interface and its corresponding implementation com.liferay.commerce.term.model.impl.CTermEntryLocalizationModelImpl 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.commerce.term.model.impl.CTermEntryLocalizationImpl.

See Also:
Generated:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    long
    Returns the commerce term entry ID of this c term entry localization.
    long
    Returns the company ID of this c term entry localization.
    long
    Returns the c term entry localization ID of this c term entry localization.
    Returns the description of this c term entry localization.
    Returns the label of this c term entry localization.
    Returns the language ID of this c term entry localization.
    long
    Returns the mvcc version of this c term entry localization.
    long
    Returns the primary key of this c term entry localization.
    void
    setCommerceTermEntryId(long commerceTermEntryId)
    Sets the commerce term entry ID of this c term entry localization.
    void
    setCompanyId(long companyId)
    Sets the company ID of this c term entry localization.
    void
    setCTermEntryLocalizationId(long cTermEntryLocalizationId)
    Sets the c term entry localization ID of this c term entry localization.
    void
    setDescription(String description)
    Sets the description of this c term entry localization.
    void
    Sets the label of this c term entry localization.
    void
    setLanguageId(String languageId)
    Sets the language ID of this c term entry localization.
    void
    setMvccVersion(long mvccVersion)
    Sets the mvcc version of this c term entry localization.
    void
    setPrimaryKey(long primaryKey)
    Sets the primary key of this c term entry localization.
    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 c term entry localization.
      Returns:
      the primary key of this c term entry localization
    • setPrimaryKey

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

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

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

      long getCTermEntryLocalizationId()
      Returns the c term entry localization ID of this c term entry localization.
      Returns:
      the c term entry localization ID of this c term entry localization
    • setCTermEntryLocalizationId

      void setCTermEntryLocalizationId(long cTermEntryLocalizationId)
      Sets the c term entry localization ID of this c term entry localization.
      Parameters:
      cTermEntryLocalizationId - the c term entry localization ID of this c term entry localization
    • getCompanyId

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

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

      long getCommerceTermEntryId()
      Returns the commerce term entry ID of this c term entry localization.
      Returns:
      the commerce term entry ID of this c term entry localization
    • setCommerceTermEntryId

      void setCommerceTermEntryId(long commerceTermEntryId)
      Sets the commerce term entry ID of this c term entry localization.
      Parameters:
      commerceTermEntryId - the commerce term entry ID of this c term entry localization
    • getLanguageId

      @AutoEscape String getLanguageId()
      Returns the language ID of this c term entry localization.
      Returns:
      the language ID of this c term entry localization
    • setLanguageId

      void setLanguageId(String languageId)
      Sets the language ID of this c term entry localization.
      Parameters:
      languageId - the language ID of this c term entry localization
    • getDescription

      @AutoEscape String getDescription()
      Returns the description of this c term entry localization.
      Returns:
      the description of this c term entry localization
    • setDescription

      void setDescription(String description)
      Sets the description of this c term entry localization.
      Parameters:
      description - the description of this c term entry localization
    • getLabel

      @AutoEscape String getLabel()
      Returns the label of this c term entry localization.
      Returns:
      the label of this c term entry localization
    • setLabel

      void setLabel(String label)
      Sets the label of this c term entry localization.
      Parameters:
      label - the label of this c term entry localization
    • cloneWithOriginalValues

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

      default String toXmlString()