Package org.flowable.form.api
Interface FormDefinition
public interface FormDefinition
An object structure representing a form
At deploy time, the engine will then parse the form definition files to an form instance of this class.
- Author:
- Tijs Rademakers, Joram Barez
-
Method Summary
Modifier and TypeMethodDescriptioncategory name of the formThe deployment in which this form is contained.description of this formgetId()
unique identifiergetKey()
unique name for all versions this formgetName()
label used for display purposesname ofthe resource
of this form definition.The tenant identifier of this formint
version of this form
-
Method Details
-
getId
String getId()unique identifier -
getCategory
String getCategory()category name of the form -
getName
String getName()label used for display purposes -
getKey
String getKey()unique name for all versions this form -
getDescription
String getDescription()description of this form -
getVersion
int getVersion()version of this form -
getResourceName
String getResourceName()name ofthe resource
of this form definition. -
getDeploymentId
String getDeploymentId()The deployment in which this form is contained. -
getTenantId
String getTenantId()The tenant identifier of this form
-