Package com.liferay.journal.model
Interface JournalArticleLocalizationModel
- All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<JournalArticleLocalization>
,com.liferay.portal.kernel.model.ClassedModel
,Cloneable
,Comparable<JournalArticleLocalization>
,com.liferay.portal.kernel.model.change.tracking.CTModel<JournalArticleLocalization>
,com.liferay.portal.kernel.model.MVCCModel
,Serializable
,com.liferay.portal.kernel.model.ShardedModel
- All Known Subinterfaces:
JournalArticleLocalization
- All Known Implementing Classes:
JournalArticleLocalizationWrapper
@ProviderType
public interface JournalArticleLocalizationModel
extends com.liferay.portal.kernel.model.BaseModel<JournalArticleLocalization>, com.liferay.portal.kernel.model.change.tracking.CTModel<JournalArticleLocalization>, com.liferay.portal.kernel.model.MVCCModel, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the JournalArticleLocalization service. Represents a row in the "JournalArticleLocalization" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.journal.model.impl.JournalArticleLocalizationModelImpl
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.journal.model.impl.JournalArticleLocalizationImpl
.
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the article localization ID of this journal article localization.long
Returns the article pk of this journal article localization.long
Returns the company ID of this journal article localization.long
Returns the ct collection ID of this journal article localization.Returns the description of this journal article localization.Returns the language ID of this journal article localization.long
Returns the mvcc version of this journal article localization.long
Returns the primary key of this journal article localization.getTitle()
Returns the title of this journal article localization.void
setArticleLocalizationId
(long articleLocalizationId) Sets the article localization ID of this journal article localization.void
setArticlePK
(long articlePK) Sets the article pk of this journal article localization.void
setCompanyId
(long companyId) Sets the company ID of this journal article localization.void
setCtCollectionId
(long ctCollectionId) Sets the ct collection ID of this journal article localization.void
setDescription
(String description) Sets the description of this journal article localization.void
setLanguageId
(String languageId) Sets the language ID of this journal article localization.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this journal article localization.void
setPrimaryKey
(long primaryKey) Sets the primary key of this journal article localization.void
Sets the title of this journal article 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 journal article localization.- Specified by:
getPrimaryKey
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<JournalArticleLocalization>
- Returns:
- the primary key of this journal article localization
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this journal article localization.- Specified by:
setPrimaryKey
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<JournalArticleLocalization>
- Parameters:
primaryKey
- the primary key of this journal article localization
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this journal article localization.- Specified by:
getMvccVersion
in interfacecom.liferay.portal.kernel.model.MVCCModel
- Returns:
- the mvcc version of this journal article localization
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this journal article localization.- Specified by:
setMvccVersion
in interfacecom.liferay.portal.kernel.model.MVCCModel
- Parameters:
mvccVersion
- the mvcc version of this journal article localization
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this journal article localization.- Specified by:
getCtCollectionId
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<JournalArticleLocalization>
- Returns:
- the ct collection ID of this journal article localization
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this journal article localization.- Specified by:
setCtCollectionId
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<JournalArticleLocalization>
- Parameters:
ctCollectionId
- the ct collection ID of this journal article localization
-
getArticleLocalizationId
long getArticleLocalizationId()Returns the article localization ID of this journal article localization.- Returns:
- the article localization ID of this journal article localization
-
setArticleLocalizationId
void setArticleLocalizationId(long articleLocalizationId) Sets the article localization ID of this journal article localization.- Parameters:
articleLocalizationId
- the article localization ID of this journal article localization
-
getCompanyId
long getCompanyId()Returns the company ID of this journal article localization.- Specified by:
getCompanyId
in interfacecom.liferay.portal.kernel.model.ShardedModel
- Returns:
- the company ID of this journal article localization
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this journal article localization.- Specified by:
setCompanyId
in interfacecom.liferay.portal.kernel.model.ShardedModel
- Parameters:
companyId
- the company ID of this journal article localization
-
getArticlePK
long getArticlePK()Returns the article pk of this journal article localization.- Returns:
- the article pk of this journal article localization
-
setArticlePK
void setArticlePK(long articlePK) Sets the article pk of this journal article localization.- Parameters:
articlePK
- the article pk of this journal article localization
-
getTitle
Returns the title of this journal article localization.- Returns:
- the title of this journal article localization
-
setTitle
Sets the title of this journal article localization.- Parameters:
title
- the title of this journal article localization
-
getDescription
Returns the description of this journal article localization.- Returns:
- the description of this journal article localization
-
setDescription
Sets the description of this journal article localization.- Parameters:
description
- the description of this journal article localization
-
getLanguageId
Returns the language ID of this journal article localization.- Returns:
- the language ID of this journal article localization
-
setLanguageId
Sets the language ID of this journal article localization.- Parameters:
languageId
- the language ID of this journal article localization
-
cloneWithOriginalValues
JournalArticleLocalization cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfacecom.liferay.portal.kernel.model.BaseModel<JournalArticleLocalization>
-
toXmlString
-