Class FormModelResponse
- java.lang.Object
-
- org.flowable.cmmn.rest.service.api.FormModelResponse
-
public class FormModelResponse extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringdescriptionprotected List<org.flowable.form.model.FormField>fieldsprotected Stringidprotected Stringkeyprotected Stringnameprotected List<org.flowable.form.model.FormOutcome>outcomesprotected StringoutcomeVariableNameprotected intversion
-
Constructor Summary
Constructors Constructor Description FormModelResponse(org.flowable.form.api.FormInfo formInfo)FormModelResponse(org.flowable.form.api.FormInfo formInfo, org.flowable.form.model.SimpleFormModel formModel)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()List<org.flowable.form.model.FormField>getFields()StringgetId()StringgetKey()StringgetName()List<org.flowable.form.model.FormOutcome>getOutcomes()StringgetOutcomeVariableName()intgetVersion()voidsetDescription(String description)voidsetFields(List<org.flowable.form.model.FormField> fields)voidsetId(String id)voidsetKey(String key)voidsetName(String name)voidsetOutcomes(List<org.flowable.form.model.FormOutcome> outcomes)voidsetOutcomeVariableName(String outcomeVariableName)voidsetVersion(int version)
-
-
-
Field Detail
-
id
protected String id
-
name
protected String name
-
description
protected String description
-
key
protected String key
-
version
protected int version
-
fields
protected List<org.flowable.form.model.FormField> fields
-
outcomes
protected List<org.flowable.form.model.FormOutcome> outcomes
-
outcomeVariableName
protected String outcomeVariableName
-
-
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)
-
getFields
public List<org.flowable.form.model.FormField> getFields()
-
setFields
public void setFields(List<org.flowable.form.model.FormField> fields)
-
getOutcomes
public List<org.flowable.form.model.FormOutcome> getOutcomes()
-
setOutcomes
public void setOutcomes(List<org.flowable.form.model.FormOutcome> outcomes)
-
getOutcomeVariableName
public String getOutcomeVariableName()
-
setOutcomeVariableName
public void setOutcomeVariableName(String outcomeVariableName)
-
-