Interface CountryLocalizationModel

All Superinterfaces:
BaseModel<CountryLocalization>, ClassedModel, Cloneable, Comparable<CountryLocalization>, CTModel<CountryLocalization>, MVCCModel, Serializable, ShardedModel
All Known Subinterfaces:
CountryLocalization
All Known Implementing Classes:
CountryLocalizationWrapper

@ProviderType public interface CountryLocalizationModel extends BaseModel<CountryLocalization>, CTModel<CountryLocalization>, MVCCModel, ShardedModel
The base model interface for the CountryLocalization service. Represents a row in the "CountryLocalization" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation com.liferay.portal.model.impl.CountryLocalizationModelImpl 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.portal.model.impl.CountryLocalizationImpl.

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • getPrimaryKey

      long getPrimaryKey()
      Returns the primary key of this country localization.
      Specified by:
      getPrimaryKey in interface CTModel<CountryLocalization>
      Returns:
      the primary key of this country localization
    • setPrimaryKey

      void setPrimaryKey(long primaryKey)
      Sets the primary key of this country localization.
      Specified by:
      setPrimaryKey in interface CTModel<CountryLocalization>
      Parameters:
      primaryKey - the primary key of this country localization
    • getMvccVersion

      long getMvccVersion()
      Returns the mvcc version of this country localization.
      Specified by:
      getMvccVersion in interface MVCCModel
      Returns:
      the mvcc version of this country localization
    • setMvccVersion

      void setMvccVersion(long mvccVersion)
      Sets the mvcc version of this country localization.
      Specified by:
      setMvccVersion in interface MVCCModel
      Parameters:
      mvccVersion - the mvcc version of this country localization
    • getCtCollectionId

      long getCtCollectionId()
      Returns the ct collection ID of this country localization.
      Specified by:
      getCtCollectionId in interface CTModel<CountryLocalization>
      Returns:
      the ct collection ID of this country localization
    • setCtCollectionId

      void setCtCollectionId(long ctCollectionId)
      Sets the ct collection ID of this country localization.
      Specified by:
      setCtCollectionId in interface CTModel<CountryLocalization>
      Parameters:
      ctCollectionId - the ct collection ID of this country localization
    • getCountryLocalizationId

      long getCountryLocalizationId()
      Returns the country localization ID of this country localization.
      Returns:
      the country localization ID of this country localization
    • setCountryLocalizationId

      void setCountryLocalizationId(long countryLocalizationId)
      Sets the country localization ID of this country localization.
      Parameters:
      countryLocalizationId - the country localization ID of this country localization
    • getCompanyId

      long getCompanyId()
      Returns the company ID of this country localization.
      Specified by:
      getCompanyId in interface ShardedModel
      Returns:
      the company ID of this country localization
    • setCompanyId

      void setCompanyId(long companyId)
      Sets the company ID of this country localization.
      Specified by:
      setCompanyId in interface ShardedModel
      Parameters:
      companyId - the company ID of this country localization
    • getCountryId

      long getCountryId()
      Returns the country ID of this country localization.
      Returns:
      the country ID of this country localization
    • setCountryId

      void setCountryId(long countryId)
      Sets the country ID of this country localization.
      Parameters:
      countryId - the country ID of this country localization
    • getLanguageId

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

      void setLanguageId(String languageId)
      Sets the language ID of this country localization.
      Parameters:
      languageId - the language ID of this country localization
    • getTitle

      @AutoEscape String getTitle()
      Returns the title of this country localization.
      Returns:
      the title of this country localization
    • setTitle

      void setTitle(String title)
      Sets the title of this country localization.
      Parameters:
      title - the title of this country localization
    • cloneWithOriginalValues

      CountryLocalization cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface BaseModel<CountryLocalization>
    • toXmlString

      default String toXmlString()