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.String
getCategory()
category name of the work object definitionjava.lang.String
getDeploymentId()
The deployment in which this work object definition is contained.java.lang.String
getDescription()
description of this work object definitionjava.lang.String
getId()
unique identifierjava.lang.String
getKey()
unique name for all versions this work object definitionjava.lang.String
getName()
label used for display purposesjava.lang.String
getResourceName()
name ofthe resource
of this work object definition definition.java.lang.String
getTenantId()
The tenant identifier of this work object definitionjava.lang.String
getType()
work object definition typeint
getVersion()
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 resource
of 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
-