Package org.flowable.engine.impl.form
Class FormDataImpl
- java.lang.Object
-
- org.flowable.engine.impl.form.FormDataImpl
-
- All Implemented Interfaces:
Serializable,FormData
- Direct Known Subclasses:
StartFormDataImpl,TaskFormDataImpl
public abstract class FormDataImpl extends Object implements FormData, Serializable
- Author:
- Tom Baeyens
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringdeploymentIdprotected StringformKeyprotected List<FormProperty>formProperties
-
Constructor Summary
Constructors Constructor Description FormDataImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDeploymentId()The deployment id of the process definition to which this form is relatedStringgetFormKey()User defined reference to a form.List<FormProperty>getFormProperties()Properties containing the dynamic information that needs to be displayed in the form.voidsetDeploymentId(String deploymentId)voidsetFormKey(String formKey)voidsetFormProperties(List<FormProperty> formProperties)
-
-
-
Field Detail
-
formKey
protected String formKey
-
deploymentId
protected String deploymentId
-
formProperties
protected List<FormProperty> formProperties
-
-
Method Detail
-
getFormKey
public String getFormKey()
Description copied from interface:FormDataUser 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.- Specified by:
getFormKeyin interfaceFormData
-
getDeploymentId
public String getDeploymentId()
Description copied from interface:FormDataThe deployment id of the process definition to which this form is related- Specified by:
getDeploymentIdin interfaceFormData
-
getFormProperties
public List<FormProperty> getFormProperties()
Description copied from interface:FormDataProperties containing the dynamic information that needs to be displayed in the form.- Specified by:
getFormPropertiesin interfaceFormData
-
setFormKey
public void setFormKey(String formKey)
-
setDeploymentId
public void setDeploymentId(String deploymentId)
-
setFormProperties
public void setFormProperties(List<FormProperty> formProperties)
-
-