Interface PlatformDefinition
- All Known Implementing Classes:
PlatformDefinitionImpl
public interface PlatformDefinition
A common interface for definitions (case, process, decision, form, etc).
Used only for querying data.
- Author:
- Christopher Welsch
-
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
-