Interface WorkDefinition
- All Known Implementing Classes:
WorkDefinitionImpl
public interface WorkDefinition
A common interface for process and case definitions.
Used only for querying data.
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptionThe category of the definitionThe deployment of the definitionThe description of the definitiongetId()
The id of the definitiongetKey()
The key of the definitiongetName()
The name of the definitionThe tenantId of the definitiongetType()
The type of the definition, e.g.int
The version of the definition
-
Method Details
-
getId
String getId()The id of the definition -
getType
String getType()The type of the definition, e.g.bpmn
,cmmn
-
getCategory
String getCategory()The category of the definition -
getName
String getName()The name of the definition -
getKey
String getKey()The key of the definition -
getDescription
String getDescription()The description of the definition -
getVersion
int getVersion()The version of the definition -
getDeploymentId
String getDeploymentId()The deployment of the definition -
getTenantId
String getTenantId()The tenantId of the definition
-