Class FormModelRepresentation
- java.lang.Object
-
- org.flowable.ui.common.model.AbstractRepresentation
-
- org.flowable.ui.task.model.runtime.FormModelRepresentation
-
public class FormModelRepresentation extends AbstractRepresentation
REST representation of a case instance.- Author:
- Tijs Rademakers
-
-
Constructor Summary
Constructors Constructor Description FormModelRepresentation(org.flowable.form.api.FormInfo formInfo)FormModelRepresentation(org.flowable.form.api.FormInfo formInfo, SimpleFormModel formModel)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()List<FormField>getFields()StringgetId()StringgetKey()StringgetName()List<FormOutcome>getOutcomes()StringgetOutcomeVariableName()intgetVersion()voidsetDescription(String description)voidsetFields(List<FormField> fields)voidsetId(String id)voidsetKey(String key)voidsetName(String name)voidsetOutcomes(List<FormOutcome> outcomes)voidsetOutcomeVariableName(String outcomeVariableName)voidsetVersion(int version)
-
-
-
Constructor Detail
-
FormModelRepresentation
public FormModelRepresentation(org.flowable.form.api.FormInfo formInfo)
-
FormModelRepresentation
public FormModelRepresentation(org.flowable.form.api.FormInfo formInfo, SimpleFormModel 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)
-
getOutcomes
public List<FormOutcome> getOutcomes()
-
setOutcomes
public void setOutcomes(List<FormOutcome> outcomes)
-
getOutcomeVariableName
public String getOutcomeVariableName()
-
setOutcomeVariableName
public void setOutcomeVariableName(String outcomeVariableName)
-
-