Package com.flowable.workobject.api
Interface WorkObjectDefinition
- All Known Subinterfaces:
WorkObjectDefinitionEntity
- All Known Implementing Classes:
FormWorkObjectDefinition,WorkObjectDefinitionEntityImpl
public interface WorkObjectDefinition
An object structure representing a work object definition
At deploy time, the engine will then parse the work object definition definition files to a work object definition instance of this class.
- Author:
- Tijs Rademakers, Joram Barez
-
Method Summary
Modifier and Type Method Description java.lang.StringgetCategory()category name of the work object definitionjava.lang.StringgetDeploymentId()The deployment in which this work object definition is contained.java.lang.StringgetDescription()description of this work object definitionjava.lang.StringgetId()unique identifierjava.lang.StringgetKey()unique name for all versions this work object definitionjava.lang.StringgetName()label used for display purposesjava.lang.StringgetResourceName()name ofthe resourceof this work object definition definition.java.lang.StringgetTenantId()The tenant identifier of this work object definitionjava.lang.StringgetType()work object definition typeintgetVersion()version of this work object definition
-
Method Details
-
getId
java.lang.String getId()unique identifier -
getCategory
java.lang.String getCategory()category name of the work object definition -
getName
java.lang.String getName()label used for display purposes -
getKey
java.lang.String getKey()unique name for all versions this work object definition -
getType
java.lang.String getType()work object definition type -
getDescription
java.lang.String getDescription()description of this work object definition -
getVersion
int getVersion()version of this work object definition -
getResourceName
java.lang.String getResourceName()name ofthe resourceof this work object definition definition. -
getDeploymentId
java.lang.String getDeploymentId()The deployment in which this work object definition is contained. -
getTenantId
java.lang.String getTenantId()The tenant identifier of this work object definition
-