Package com.liferay.depot.model
Interface DepotAppCustomizationModel
- All Superinterfaces:
com.liferay.portal.kernel.model.BaseModel<DepotAppCustomization>
,com.liferay.portal.kernel.model.ClassedModel
,Cloneable
,Comparable<DepotAppCustomization>
,com.liferay.portal.kernel.model.change.tracking.CTModel<DepotAppCustomization>
,com.liferay.portal.kernel.model.MVCCModel
,Serializable
,com.liferay.portal.kernel.model.ShardedModel
- All Known Subinterfaces:
DepotAppCustomization
- All Known Implementing Classes:
DepotAppCustomizationWrapper
@ProviderType
public interface DepotAppCustomizationModel
extends com.liferay.portal.kernel.model.BaseModel<DepotAppCustomization>, com.liferay.portal.kernel.model.change.tracking.CTModel<DepotAppCustomization>, com.liferay.portal.kernel.model.MVCCModel, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the DepotAppCustomization service. Represents a row in the "DepotAppCustomization" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.depot.model.impl.DepotAppCustomizationModelImpl
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.depot.model.impl.DepotAppCustomizationImpl
.
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this depot app customization.long
Returns the ct collection ID of this depot app customization.long
Returns the depot app customization ID of this depot app customization.long
Returns the depot entry ID of this depot app customization.boolean
Returns the enabled of this depot app customization.long
Returns the mvcc version of this depot app customization.Returns the portlet ID of this depot app customization.long
Returns the primary key of this depot app customization.boolean
Returnstrue
if this depot app customization is enabled.void
setCompanyId
(long companyId) Sets the company ID of this depot app customization.void
setCtCollectionId
(long ctCollectionId) Sets the ct collection ID of this depot app customization.void
setDepotAppCustomizationId
(long depotAppCustomizationId) Sets the depot app customization ID of this depot app customization.void
setDepotEntryId
(long depotEntryId) Sets the depot entry ID of this depot app customization.void
setEnabled
(boolean enabled) Sets whether this depot app customization is enabled.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this depot app customization.void
setPortletId
(String portletId) Sets the portlet ID of this depot app customization.void
setPrimaryKey
(long primaryKey) Sets the primary key of this depot app customization.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 depot app customization.- Specified by:
getPrimaryKey
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<DepotAppCustomization>
- Returns:
- the primary key of this depot app customization
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this depot app customization.- Specified by:
setPrimaryKey
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<DepotAppCustomization>
- Parameters:
primaryKey
- the primary key of this depot app customization
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this depot app customization.- Specified by:
getMvccVersion
in interfacecom.liferay.portal.kernel.model.MVCCModel
- Returns:
- the mvcc version of this depot app customization
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this depot app customization.- Specified by:
setMvccVersion
in interfacecom.liferay.portal.kernel.model.MVCCModel
- Parameters:
mvccVersion
- the mvcc version of this depot app customization
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this depot app customization.- Specified by:
getCtCollectionId
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<DepotAppCustomization>
- Returns:
- the ct collection ID of this depot app customization
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this depot app customization.- Specified by:
setCtCollectionId
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<DepotAppCustomization>
- Parameters:
ctCollectionId
- the ct collection ID of this depot app customization
-
getDepotAppCustomizationId
long getDepotAppCustomizationId()Returns the depot app customization ID of this depot app customization.- Returns:
- the depot app customization ID of this depot app customization
-
setDepotAppCustomizationId
void setDepotAppCustomizationId(long depotAppCustomizationId) Sets the depot app customization ID of this depot app customization.- Parameters:
depotAppCustomizationId
- the depot app customization ID of this depot app customization
-
getCompanyId
long getCompanyId()Returns the company ID of this depot app customization.- Specified by:
getCompanyId
in interfacecom.liferay.portal.kernel.model.ShardedModel
- Returns:
- the company ID of this depot app customization
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this depot app customization.- Specified by:
setCompanyId
in interfacecom.liferay.portal.kernel.model.ShardedModel
- Parameters:
companyId
- the company ID of this depot app customization
-
getDepotEntryId
long getDepotEntryId()Returns the depot entry ID of this depot app customization.- Returns:
- the depot entry ID of this depot app customization
-
setDepotEntryId
void setDepotEntryId(long depotEntryId) Sets the depot entry ID of this depot app customization.- Parameters:
depotEntryId
- the depot entry ID of this depot app customization
-
getEnabled
boolean getEnabled()Returns the enabled of this depot app customization.- Returns:
- the enabled of this depot app customization
-
isEnabled
boolean isEnabled()Returnstrue
if this depot app customization is enabled.- Returns:
true
if this depot app customization is enabled;false
otherwise
-
setEnabled
void setEnabled(boolean enabled) Sets whether this depot app customization is enabled.- Parameters:
enabled
- the enabled of this depot app customization
-
getPortletId
Returns the portlet ID of this depot app customization.- Returns:
- the portlet ID of this depot app customization
-
setPortletId
Sets the portlet ID of this depot app customization.- Parameters:
portletId
- the portlet ID of this depot app customization
-
cloneWithOriginalValues
DepotAppCustomization cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfacecom.liferay.portal.kernel.model.BaseModel<DepotAppCustomization>
-
toXmlString
-