Package org.flowable.engine.form
Interface FormData
- All Known Subinterfaces:
StartFormData
,TaskFormData
public interface FormData
Contains all information for displaying a form and serves as base interface for
StartFormData
and TaskFormData
- Author:
- Tom Baeyens
-
Method Summary
Modifier and TypeMethodDescriptionThe deployment id of the process definition to which this form is relatedUser defined reference to a form.Properties containing the dynamic information that needs to be displayed in the form.
-
Method Details
-
getFormKey
String getFormKey()User defined reference to a form. In the Explorer app, it is assumed that the form key specifies a resource in the deployment which is the template for the form. But users are free to use this property differently. -
getDeploymentId
String getDeploymentId()The deployment id of the process definition to which this form is related -
getFormProperties
List<FormProperty> getFormProperties()Properties containing the dynamic information that needs to be displayed in the form.
-