Interface KaleoConditionModel
- All Superinterfaces:
com.liferay.portal.kernel.model.AuditedModel
,com.liferay.portal.kernel.model.BaseModel<KaleoCondition>
,com.liferay.portal.kernel.model.ClassedModel
,Cloneable
,Comparable<KaleoCondition>
,com.liferay.portal.kernel.model.change.tracking.CTModel<KaleoCondition>
,com.liferay.portal.kernel.model.GroupedModel
,com.liferay.portal.kernel.model.MVCCModel
,Serializable
,com.liferay.portal.kernel.model.ShardedModel
- All Known Subinterfaces:
KaleoCondition
- All Known Implementing Classes:
KaleoConditionWrapper
@ProviderType
public interface KaleoConditionModel
extends com.liferay.portal.kernel.model.BaseModel<KaleoCondition>, com.liferay.portal.kernel.model.change.tracking.CTModel<KaleoCondition>, com.liferay.portal.kernel.model.GroupedModel, com.liferay.portal.kernel.model.MVCCModel, com.liferay.portal.kernel.model.ShardedModel
The base model interface for the KaleoCondition service. Represents a row in the "KaleoCondition" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.workflow.kaleo.model.impl.KaleoConditionModelImpl
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.workflow.kaleo.model.impl.KaleoConditionImpl
.
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the company ID of this kaleo condition.Returns the create date of this kaleo condition.long
Returns the ct collection ID of this kaleo condition.long
Returns the group ID of this kaleo condition.long
Returns the kaleo condition ID of this kaleo condition.long
Returns the kaleo definition ID of this kaleo condition.long
Returns the kaleo definition version ID of this kaleo condition.long
Returns the kaleo node ID of this kaleo condition.Returns the modified date of this kaleo condition.long
Returns the mvcc version of this kaleo condition.long
Returns the primary key of this kaleo condition.Returns the script of this kaleo condition.Returns the script language of this kaleo condition.Returns the script required contexts of this kaleo condition.long
Returns the user ID of this kaleo condition.Returns the user name of this kaleo condition.Returns the user uuid of this kaleo condition.void
setCompanyId
(long companyId) Sets the company ID of this kaleo condition.void
setCreateDate
(Date createDate) Sets the create date of this kaleo condition.void
setCtCollectionId
(long ctCollectionId) Sets the ct collection ID of this kaleo condition.void
setGroupId
(long groupId) Sets the group ID of this kaleo condition.void
setKaleoConditionId
(long kaleoConditionId) Sets the kaleo condition ID of this kaleo condition.void
setKaleoDefinitionId
(long kaleoDefinitionId) Sets the kaleo definition ID of this kaleo condition.void
setKaleoDefinitionVersionId
(long kaleoDefinitionVersionId) Sets the kaleo definition version ID of this kaleo condition.void
setKaleoNodeId
(long kaleoNodeId) Sets the kaleo node ID of this kaleo condition.void
setModifiedDate
(Date modifiedDate) Sets the modified date of this kaleo condition.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this kaleo condition.void
setPrimaryKey
(long primaryKey) Sets the primary key of this kaleo condition.void
Sets the script of this kaleo condition.void
setScriptLanguage
(String scriptLanguage) Sets the script language of this kaleo condition.void
setScriptRequiredContexts
(String scriptRequiredContexts) Sets the script required contexts of this kaleo condition.void
setUserId
(long userId) Sets the user ID of this kaleo condition.void
setUserName
(String userName) Sets the user name of this kaleo condition.void
setUserUuid
(String userUuid) Sets the user uuid of this kaleo condition.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 kaleo condition.- Specified by:
getPrimaryKey
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<KaleoCondition>
- Returns:
- the primary key of this kaleo condition
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this kaleo condition.- Specified by:
setPrimaryKey
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<KaleoCondition>
- Parameters:
primaryKey
- the primary key of this kaleo condition
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this kaleo condition.- Specified by:
getMvccVersion
in interfacecom.liferay.portal.kernel.model.MVCCModel
- Returns:
- the mvcc version of this kaleo condition
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this kaleo condition.- Specified by:
setMvccVersion
in interfacecom.liferay.portal.kernel.model.MVCCModel
- Parameters:
mvccVersion
- the mvcc version of this kaleo condition
-
getCtCollectionId
long getCtCollectionId()Returns the ct collection ID of this kaleo condition.- Specified by:
getCtCollectionId
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<KaleoCondition>
- Returns:
- the ct collection ID of this kaleo condition
-
setCtCollectionId
void setCtCollectionId(long ctCollectionId) Sets the ct collection ID of this kaleo condition.- Specified by:
setCtCollectionId
in interfacecom.liferay.portal.kernel.model.change.tracking.CTModel<KaleoCondition>
- Parameters:
ctCollectionId
- the ct collection ID of this kaleo condition
-
getKaleoConditionId
long getKaleoConditionId()Returns the kaleo condition ID of this kaleo condition.- Returns:
- the kaleo condition ID of this kaleo condition
-
setKaleoConditionId
void setKaleoConditionId(long kaleoConditionId) Sets the kaleo condition ID of this kaleo condition.- Parameters:
kaleoConditionId
- the kaleo condition ID of this kaleo condition
-
getGroupId
long getGroupId()Returns the group ID of this kaleo condition.- Specified by:
getGroupId
in interfacecom.liferay.portal.kernel.model.GroupedModel
- Returns:
- the group ID of this kaleo condition
-
setGroupId
void setGroupId(long groupId) Sets the group ID of this kaleo condition.- Specified by:
setGroupId
in interfacecom.liferay.portal.kernel.model.GroupedModel
- Parameters:
groupId
- the group ID of this kaleo condition
-
getCompanyId
long getCompanyId()Returns the company ID of this kaleo condition.- Specified by:
getCompanyId
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Specified by:
getCompanyId
in interfacecom.liferay.portal.kernel.model.ShardedModel
- Returns:
- the company ID of this kaleo condition
-
setCompanyId
void setCompanyId(long companyId) Sets the company ID of this kaleo condition.- Specified by:
setCompanyId
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Specified by:
setCompanyId
in interfacecom.liferay.portal.kernel.model.ShardedModel
- Parameters:
companyId
- the company ID of this kaleo condition
-
getUserId
long getUserId()Returns the user ID of this kaleo condition.- Specified by:
getUserId
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Returns:
- the user ID of this kaleo condition
-
setUserId
void setUserId(long userId) Sets the user ID of this kaleo condition.- Specified by:
setUserId
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Parameters:
userId
- the user ID of this kaleo condition
-
getUserUuid
String getUserUuid()Returns the user uuid of this kaleo condition.- Specified by:
getUserUuid
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Returns:
- the user uuid of this kaleo condition
-
setUserUuid
Sets the user uuid of this kaleo condition.- Specified by:
setUserUuid
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Parameters:
userUuid
- the user uuid of this kaleo condition
-
getUserName
Returns the user name of this kaleo condition.- Specified by:
getUserName
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Returns:
- the user name of this kaleo condition
-
setUserName
Sets the user name of this kaleo condition.- Specified by:
setUserName
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Parameters:
userName
- the user name of this kaleo condition
-
getCreateDate
Date getCreateDate()Returns the create date of this kaleo condition.- Specified by:
getCreateDate
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Returns:
- the create date of this kaleo condition
-
setCreateDate
Sets the create date of this kaleo condition.- Specified by:
setCreateDate
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Parameters:
createDate
- the create date of this kaleo condition
-
getModifiedDate
Date getModifiedDate()Returns the modified date of this kaleo condition.- Specified by:
getModifiedDate
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Returns:
- the modified date of this kaleo condition
-
setModifiedDate
Sets the modified date of this kaleo condition.- Specified by:
setModifiedDate
in interfacecom.liferay.portal.kernel.model.AuditedModel
- Parameters:
modifiedDate
- the modified date of this kaleo condition
-
getKaleoDefinitionId
long getKaleoDefinitionId()Returns the kaleo definition ID of this kaleo condition.- Returns:
- the kaleo definition ID of this kaleo condition
-
setKaleoDefinitionId
void setKaleoDefinitionId(long kaleoDefinitionId) Sets the kaleo definition ID of this kaleo condition.- Parameters:
kaleoDefinitionId
- the kaleo definition ID of this kaleo condition
-
getKaleoDefinitionVersionId
long getKaleoDefinitionVersionId()Returns the kaleo definition version ID of this kaleo condition.- Returns:
- the kaleo definition version ID of this kaleo condition
-
setKaleoDefinitionVersionId
void setKaleoDefinitionVersionId(long kaleoDefinitionVersionId) Sets the kaleo definition version ID of this kaleo condition.- Parameters:
kaleoDefinitionVersionId
- the kaleo definition version ID of this kaleo condition
-
getKaleoNodeId
long getKaleoNodeId()Returns the kaleo node ID of this kaleo condition.- Returns:
- the kaleo node ID of this kaleo condition
-
setKaleoNodeId
void setKaleoNodeId(long kaleoNodeId) Sets the kaleo node ID of this kaleo condition.- Parameters:
kaleoNodeId
- the kaleo node ID of this kaleo condition
-
getScript
Returns the script of this kaleo condition.- Returns:
- the script of this kaleo condition
-
setScript
Sets the script of this kaleo condition.- Parameters:
script
- the script of this kaleo condition
-
getScriptLanguage
Returns the script language of this kaleo condition.- Returns:
- the script language of this kaleo condition
-
setScriptLanguage
Sets the script language of this kaleo condition.- Parameters:
scriptLanguage
- the script language of this kaleo condition
-
getScriptRequiredContexts
Returns the script required contexts of this kaleo condition.- Returns:
- the script required contexts of this kaleo condition
-
setScriptRequiredContexts
Sets the script required contexts of this kaleo condition.- Parameters:
scriptRequiredContexts
- the script required contexts of this kaleo condition
-
cloneWithOriginalValues
KaleoCondition cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfacecom.liferay.portal.kernel.model.BaseModel<KaleoCondition>
-
toXmlString
-