Package org.flowable.form.api
Interface FormDefinition
-
public interface FormDefinitionAn 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCategory()category name of the formStringgetDeploymentId()The deployment in which this form is contained.StringgetDescription()description of this formStringgetId()unique identifierStringgetKey()unique name for all versions this formStringgetName()label used for display purposesStringgetResourceName()name ofthe resourceof this form definition.StringgetTenantId()The tenant identifier of this formintgetVersion()version of this form
-
-
-
Method Detail
-
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 resourceof this form definition.
-
getDeploymentId
String getDeploymentId()
The deployment in which this form is contained.
-
getTenantId
String getTenantId()
The tenant identifier of this form
-
-