Package org.camunda.bpm.engine.form
Interface FormData
-
- All Known Subinterfaces:
StartFormData
,TaskFormData
- All Known Implementing Classes:
FormDataImpl
,StartFormDataImpl
,TaskFormDataImpl
public interface FormData
Contains all metadata for displaying a form and serves as base interface forStartFormData
andTaskFormData
- Author:
- Tom Baeyens, Michael Siebers, Daniel Meyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CamundaFormRef
getCamundaFormRef()
User-defined reference to a form.String
getDeploymentId()
The deployment id of the process definition to which this form is relatedList<FormField>
getFormFields()
returns the form fields which make up this form.String
getFormKey()
User-defined reference to a form.List<FormProperty>
getFormProperties()
Deprecated.
-
-
-
Method Detail
-
getFormKey
String getFormKey()
User-defined reference to a form. In the Camunda Tasklist application, 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. A form can be referenced either through a form key or through aCamundaFormRef
.
-
getCamundaFormRef
CamundaFormRef getCamundaFormRef()
User-defined reference to a form. ACamundaFormRef
can specify any Camunda Form deployed to the engine with any deployment. It is also possible to specify a specific version of a deployed form. A form can be referenced either through a form key or through aCamundaFormRef
.
-
getDeploymentId
String getDeploymentId()
The deployment id of the process definition to which this form is related
-
getFormProperties
@Deprecated List<FormProperty> getFormProperties()
Deprecated.Properties containing the dynamic information that needs to be displayed in the form.
-
-