Package com.flowable.form.model
Class FlowableFormModel
- java.lang.Object
 - 
- com.flowable.form.model.FlowableFormModel
 
 
- 
- All Implemented Interfaces:
 Serializable,FormModel
public class FlowableFormModel extends Object implements FormModel
- See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected List<CustomValidationDefinition>customValidationsprotected Map<String,FormDataModel>dataModelprotected StringdialogDescriptionprotected StringdialogSizeprotected StringdialogTitleprotected BooleanforceValidationprotected StringformKeyprotected Map<String,Map<String,String>>i18nprotected MetadataDefinitionmetadataprotected List<OutcomeDefinition>outcomesprotected Stringoutcomevariablenameprotected List<RowDefinition>rowsprotected SectionDefinitionsection 
- 
Constructor Summary
Constructors Constructor Description FlowableFormModel() 
- 
Method Summary
 
 - 
 
- 
- 
Field Detail
- 
formKey
protected String formKey
 
- 
rows
protected List<RowDefinition> rows
 
- 
outcomes
protected List<OutcomeDefinition> outcomes
 
- 
outcomevariablename
protected String outcomevariablename
 
- 
dialogSize
protected String dialogSize
 
- 
dialogTitle
protected String dialogTitle
 
- 
dialogDescription
protected String dialogDescription
 
- 
forceValidation
protected Boolean forceValidation
 
- 
customValidations
protected List<CustomValidationDefinition> customValidations
 
- 
section
protected SectionDefinition section
 
- 
metadata
protected MetadataDefinition metadata
 
- 
dataModel
protected Map<String,FormDataModel> dataModel
 
 - 
 
- 
Method Detail
- 
getFormKey
public String getFormKey()
 
- 
setFormKey
public void setFormKey(String formKey)
 
- 
getRows
public List<RowDefinition> getRows()
 
- 
setRows
public void setRows(List<RowDefinition> rows)
 
- 
getOutcomes
public List<OutcomeDefinition> getOutcomes()
 
- 
setOutcomes
public void setOutcomes(List<OutcomeDefinition> outcomes)
 
- 
getOutcomevariablename
public String getOutcomevariablename()
 
- 
setOutcomevariablename
public void setOutcomevariablename(String outcomevariablename)
 
- 
getDialogSize
public String getDialogSize()
 
- 
setDialogSize
public void setDialogSize(String dialogSize)
 
- 
getDialogTitle
public String getDialogTitle()
 
- 
setDialogTitle
public void setDialogTitle(String dialogTitle)
 
- 
getDialogDescription
public String getDialogDescription()
 
- 
setDialogDescription
public void setDialogDescription(String dialogDescription)
 
- 
getForceValidation
public Boolean getForceValidation()
 
- 
setForceValidation
public void setForceValidation(Boolean forceValidation)
 
- 
getCustomValidations
public List<CustomValidationDefinition> getCustomValidations()
 
- 
setCustomValidations
public void setCustomValidations(List<CustomValidationDefinition> customValidations)
 
- 
getSection
public SectionDefinition getSection()
 
- 
setSection
public void setSection(SectionDefinition section)
 
- 
getMetadata
public MetadataDefinition getMetadata()
 
- 
setMetadata
public void setMetadata(MetadataDefinition metadata)
 
- 
getDataModel
public Map<String,FormDataModel> getDataModel()
 
- 
setDataModel
public void setDataModel(Map<String,FormDataModel> dataModel)
 
 - 
 
 -