Package org.activiti.engine.repository
Interface Model
-
- All Known Subinterfaces:
ModelEntity
- All Known Implementing Classes:
ModelEntityImpl
@Internal public interface Model
Represents a model that is stored in the model repository. In addition, a model can be deployed to the Activiti Engine in a separate deployment step. A model is a container for the meta data and sources of a process model that typically can be edited in a modeling environment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCategory()DategetCreateTime()StringgetDeploymentId()StringgetId()StringgetKey()DategetLastUpdateTime()StringgetMetaInfo()StringgetName()StringgetTenantId()IntegergetVersion()booleanhasEditorSource()whether this model has editor sourcebooleanhasEditorSourceExtra()whether this model has editor source extravoidsetCategory(String category)voidsetDeploymentId(String deploymentId)voidsetKey(String key)voidsetMetaInfo(String metaInfo)voidsetName(String name)voidsetTenantId(String tenantId)voidsetVersion(Integer version)
-
-
-
Method Detail
-
getId
String getId()
-
getName
String getName()
-
setName
void setName(String name)
-
getKey
String getKey()
-
setKey
void setKey(String key)
-
getCategory
String getCategory()
-
setCategory
void setCategory(String category)
-
getCreateTime
Date getCreateTime()
-
getLastUpdateTime
Date getLastUpdateTime()
-
getVersion
Integer getVersion()
-
setVersion
void setVersion(Integer version)
-
getMetaInfo
String getMetaInfo()
-
setMetaInfo
void setMetaInfo(String metaInfo)
-
getDeploymentId
String getDeploymentId()
-
setDeploymentId
void setDeploymentId(String deploymentId)
-
setTenantId
void setTenantId(String tenantId)
-
getTenantId
String getTenantId()
-
hasEditorSource
boolean hasEditorSource()
whether this model has editor source
-
hasEditorSourceExtra
boolean hasEditorSourceExtra()
whether this model has editor source extra
-
-