Class ModelEntityImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntity
-
- org.flowable.engine.impl.persistence.entity.AbstractBpmnEngineEntity
-
- org.flowable.engine.impl.persistence.entity.ModelEntityImpl
-
- All Implemented Interfaces:
Serializable,HasRevision,Entity,ModelEntity,Model
public class ModelEntityImpl extends AbstractBpmnEngineEntity implements ModelEntity, Serializable
- Author:
- Tijs Rademakers, Joram Barrez
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringcategoryprotected DatecreateTimeprotected StringdeploymentIdprotected StringeditorSourceExtraValueIdprotected StringeditorSourceValueIdprotected Stringkeyprotected DatelastUpdateTimeprotected StringmetaInfoprotected Stringnameprotected StringtenantIdprotected Integerversion-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
id, isDeleted, isInserted, isUpdated, originalPersistentState, revision
-
-
Constructor Summary
Constructors Constructor Description ModelEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCategory()DategetCreateTime()StringgetDeploymentId()StringgetEditorSourceExtraValueId()StringgetEditorSourceValueId()StringgetKey()DategetLastUpdateTime()StringgetMetaInfo()StringgetName()ObjectgetPersistentState()StringgetTenantId()IntegergetVersion()booleanhasEditorSource()whether this model has editor sourcebooleanhasEditorSourceExtra()whether this model has editor source extravoidsetCategory(String category)voidsetCreateTime(Date createTime)voidsetDeploymentId(String deploymentId)voidsetEditorSourceExtraValueId(String editorSourceExtraValueId)voidsetEditorSourceValueId(String editorSourceValueId)voidsetKey(String key)voidsetLastUpdateTime(Date lastUpdateTime)voidsetMetaInfo(String metaInfo)voidsetName(String name)voidsetTenantId(String tenantId)voidsetVersion(Integer version)-
Methods inherited from class org.flowable.engine.impl.persistence.entity.AbstractBpmnEngineEntity
getIdPrefix
-
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
getId, getOriginalPersistentState, getRevision, getRevisionNext, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setRevision, setUpdated
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface org.flowable.common.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
-
-
-
Field Detail
-
name
protected String name
-
key
protected String key
-
category
protected String category
-
createTime
protected Date createTime
-
lastUpdateTime
protected Date lastUpdateTime
-
version
protected Integer version
-
metaInfo
protected String metaInfo
-
deploymentId
protected String deploymentId
-
editorSourceValueId
protected String editorSourceValueId
-
editorSourceExtraValueId
protected String editorSourceExtraValueId
-
tenantId
protected String tenantId
-
-
Method Detail
-
getPersistentState
public Object getPersistentState()
- Specified by:
getPersistentStatein interfaceEntity
-
getCategory
public String getCategory()
- Specified by:
getCategoryin interfaceModel
-
setCategory
public void setCategory(String category)
- Specified by:
setCategoryin interfaceModel
-
getCreateTime
public Date getCreateTime()
- Specified by:
getCreateTimein interfaceModel
-
setCreateTime
public void setCreateTime(Date createTime)
- Specified by:
setCreateTimein interfaceModelEntity
-
getLastUpdateTime
public Date getLastUpdateTime()
- Specified by:
getLastUpdateTimein interfaceModel
-
setLastUpdateTime
public void setLastUpdateTime(Date lastUpdateTime)
- Specified by:
setLastUpdateTimein interfaceModelEntity
-
getVersion
public Integer getVersion()
- Specified by:
getVersionin interfaceModel
-
setVersion
public void setVersion(Integer version)
- Specified by:
setVersionin interfaceModel
-
getMetaInfo
public String getMetaInfo()
- Specified by:
getMetaInfoin interfaceModel
-
setMetaInfo
public void setMetaInfo(String metaInfo)
- Specified by:
setMetaInfoin interfaceModel
-
getDeploymentId
public String getDeploymentId()
- Specified by:
getDeploymentIdin interfaceModel
-
setDeploymentId
public void setDeploymentId(String deploymentId)
- Specified by:
setDeploymentIdin interfaceModel
-
getEditorSourceValueId
public String getEditorSourceValueId()
- Specified by:
getEditorSourceValueIdin interfaceModelEntity
-
setEditorSourceValueId
public void setEditorSourceValueId(String editorSourceValueId)
- Specified by:
setEditorSourceValueIdin interfaceModelEntity
-
getEditorSourceExtraValueId
public String getEditorSourceExtraValueId()
- Specified by:
getEditorSourceExtraValueIdin interfaceModelEntity
-
setEditorSourceExtraValueId
public void setEditorSourceExtraValueId(String editorSourceExtraValueId)
- Specified by:
setEditorSourceExtraValueIdin interfaceModelEntity
-
getTenantId
public String getTenantId()
- Specified by:
getTenantIdin interfaceModel
-
setTenantId
public void setTenantId(String tenantId)
- Specified by:
setTenantIdin interfaceModel
-
hasEditorSource
public boolean hasEditorSource()
Description copied from interface:Modelwhether this model has editor source- Specified by:
hasEditorSourcein interfaceModel
-
hasEditorSourceExtra
public boolean hasEditorSourceExtra()
Description copied from interface:Modelwhether this model has editor source extra- Specified by:
hasEditorSourceExtrain interfaceModel
-
-