Class FormModelRepresentation
- java.lang.Object
-
- com.flowable.platform.service.task.FormModelRepresentation
-
public class FormModelRepresentation extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected List<CustomValidationDefinition>
customValidations
protected Map<String,FormDataModel>
dataModel
protected String
description
protected String
dialogDescription
protected String
dialogSize
protected String
dialogTitle
protected Boolean
forceValidation
protected String
formKey
protected Map<String,Map<String,String>>
i18n
protected String
id
protected String
key
protected MetadataDefinition
metadata
protected String
name
protected List<OutcomeDefinition>
outcomes
protected List<RowDefinition>
rows
protected SectionDefinition
section
protected int
version
-
Constructor Summary
Constructors Constructor Description FormModelRepresentation(FormInfo formInfo)
FormModelRepresentation(FormInfo formInfo, FlowableFormModel formModel)
-
Method Summary
-
-
-
Field Detail
-
id
protected String id
-
name
protected String name
-
description
protected String description
-
key
protected String key
-
version
protected int version
-
formKey
protected String formKey
-
dialogSize
protected String dialogSize
-
dialogTitle
protected String dialogTitle
-
dialogDescription
protected String dialogDescription
-
forceValidation
protected Boolean forceValidation
-
metadata
protected MetadataDefinition metadata
-
rows
protected List<RowDefinition> rows
-
section
protected SectionDefinition section
-
outcomes
protected List<OutcomeDefinition> outcomes
-
customValidations
protected List<CustomValidationDefinition> customValidations
-
dataModel
protected Map<String,FormDataModel> dataModel
-
-
Constructor Detail
-
FormModelRepresentation
public FormModelRepresentation(FormInfo formInfo)
-
FormModelRepresentation
public FormModelRepresentation(FormInfo formInfo, FlowableFormModel formModel)
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getVersion
public int getVersion()
-
setVersion
public void setVersion(int version)
-
getFormKey
public String getFormKey()
-
setFormKey
public void setFormKey(String formKey)
-
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)
-
getMetadata
public MetadataDefinition getMetadata()
-
setMetadata
public void setMetadata(MetadataDefinition metadata)
-
getRows
public List<RowDefinition> getRows()
-
setRows
public void setRows(List<RowDefinition> rows)
-
getSection
public SectionDefinition getSection()
-
setSection
public void setSection(SectionDefinition section)
-
getOutcomes
public List<OutcomeDefinition> getOutcomes()
-
setOutcomes
public void setOutcomes(List<OutcomeDefinition> outcomes)
-
getCustomValidations
public List<CustomValidationDefinition> getCustomValidations()
-
setCustomValidations
public void setCustomValidations(List<CustomValidationDefinition> customValidations)
-
getDataModel
public Map<String,FormDataModel> getDataModel()
-
setDataModel
public void setDataModel(Map<String,FormDataModel> dataModel)
-
-