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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCategory()
The category of the definitionString
getDeploymentId()
The deployment of the definitionString
getDescription()
The description of the definitionString
getId()
The id of the definitionString
getKey()
The key of the definitionString
getName()
The name of the definitionString
getTenantId()
The tenantId of the definitionString
getType()
The type of the definition, e.g.int
getVersion()
The version of the definition
-
-
-
Method Detail
-
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
-
-