Package org.flowable.form.api
Interface FormInstance
-
public interface FormInstanceAn object structure representing a submitted form.- Author:
- Tijs Rademakers, Joram Barez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFormDefinitionId()Reference to the form definition of this form instancebyte[]getFormValueBytes()The JSON document that contains the submitted form valuesStringgetFormValuesId()Reference to the JSON document id that contains the submitted form valuesStringgetId()unique identifierStringgetProcessDefinitionId()Reference to the process definition for which the form instance was createdStringgetProcessInstanceId()Reference to the process instance for which the form instance was createdStringgetScopeDefinitionId()Reference to the scope instance definition for which the form instance was createdStringgetScopeId()Reference to the scope instance for which the form instance was createdStringgetScopeType()Type of the scope instance for which the form instance was createdStringgetSubmittedBy()Reference to the user that submitted the form instanceDategetSubmittedDate()Submitted date for the form instanceStringgetTaskId()Reference to the task for which the form instance was createdStringgetTenantId()The tenant identifier of this form instance
-
-
-
Method Detail
-
getId
String getId()
unique identifier
-
getFormDefinitionId
String getFormDefinitionId()
Reference to the form definition of this form instance
-
getTaskId
String getTaskId()
Reference to the task for which the form instance was created
-
getProcessInstanceId
String getProcessInstanceId()
Reference to the process instance for which the form instance was created
-
getProcessDefinitionId
String getProcessDefinitionId()
Reference to the process definition for which the form instance was created
-
getScopeId
String getScopeId()
Reference to the scope instance for which the form instance was created
-
getScopeType
String getScopeType()
Type of the scope instance for which the form instance was created
-
getScopeDefinitionId
String getScopeDefinitionId()
Reference to the scope instance definition for which the form instance was created
-
getSubmittedDate
Date getSubmittedDate()
Submitted date for the form instance
-
getSubmittedBy
String getSubmittedBy()
Reference to the user that submitted the form instance
-
getFormValuesId
String getFormValuesId()
Reference to the JSON document id that contains the submitted form values
-
getTenantId
String getTenantId()
The tenant identifier of this form instance
-
getFormValueBytes
byte[] getFormValueBytes()
The JSON document that contains the submitted form values
-
-