Interface WorkDefinition
-
- All Known Implementing Classes:
WorkDefinitionImpl
public interface WorkDefinitionA 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 StringgetCategory()The category of the definitionStringgetDeploymentId()The deployment of the definitionStringgetDescription()The description of the definitionStringgetId()The id of the definitionStringgetKey()The key of the definitionStringgetName()The name of the definitionStringgetTenantId()The tenantId of the definitionStringgetType()The type of the definition, e.g.intgetVersion()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
-
-