public class FormModel extends Object implements Serializable
| Modifier and Type | Field and Description |
|---|---|
protected String |
description |
protected List<FormField> |
fields |
protected String |
id |
protected String |
key |
protected String |
name |
protected List<FormOutcome> |
outcomes |
protected String |
outcomeVariableName |
protected int |
version |
| Constructor and Description |
|---|
FormModel() |
| Modifier and Type | Method and Description |
|---|---|
Map<String,FormField> |
allFieldsAsMap() |
protected void |
collectSubFields(List<FormField> fields,
List<FormField> listOfAllFields) |
String |
getDescription() |
List<FormField> |
getFields()
Do not use this method for logical operations since it only return the top level fields.
|
String |
getId() |
String |
getKey() |
String |
getName() |
List<FormOutcome> |
getOutcomes() |
String |
getOutcomeVariableName() |
int |
getVersion() |
List<FormField> |
listAllFields() |
void |
setDescription(String description) |
void |
setFields(List<FormField> fields) |
void |
setId(String id) |
void |
setKey(String key) |
void |
setName(String name) |
void |
setOutcomes(List<FormOutcome> outcomes) |
void |
setOutcomeVariableName(String outcomeVariableName) |
void |
setVersion(int version) |
protected String id
protected String name
protected String description
protected String key
protected int version
protected List<FormOutcome> outcomes
protected String outcomeVariableName
public String getId()
public void setId(String id)
public String getName()
public void setName(String name)
public String getDescription()
public void setDescription(String description)
public String getKey()
public void setKey(String key)
public int getVersion()
public void setVersion(int version)
public List<FormField> getFields()
public List<FormOutcome> getOutcomes()
public void setOutcomes(List<FormOutcome> outcomes)
public String getOutcomeVariableName()
public void setOutcomeVariableName(String outcomeVariableName)
Copyright © 2017 Flowable. All rights reserved.