Class FormRepresentation
- java.lang.Object
-
- org.flowable.ui.common.model.AbstractRepresentation
-
- org.flowable.ui.modeler.model.form.FormRepresentation
-
public class FormRepresentation extends AbstractRepresentation
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringdescriptionprotected SimpleFormModelformDefinitionprotected Stringidprotected Stringkeyprotected DatelastUpdatedprotected StringlastUpdatedByprotected Stringnameprotected Integerversion
-
Constructor Summary
Constructors Constructor Description FormRepresentation()FormRepresentation(AbstractModel model)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()SimpleFormModelgetFormDefinition()StringgetId()StringgetKey()DategetLastUpdated()StringgetLastUpdatedBy()StringgetName()IntegergetVersion()voidsetDescription(String description)voidsetFormDefinition(SimpleFormModel formDefinition)voidsetId(String id)voidsetKey(String key)voidsetLastUpdated(Date lastUpdated)voidsetLastUpdatedBy(String lastUpdatedBy)voidsetName(String name)voidsetVersion(Integer version)
-
-
-
Field Detail
-
id
protected String id
-
name
protected String name
-
key
protected String key
-
description
protected String description
-
version
protected Integer version
-
lastUpdatedBy
protected String lastUpdatedBy
-
lastUpdated
protected Date lastUpdated
-
formDefinition
protected SimpleFormModel formDefinition
-
-
Constructor Detail
-
FormRepresentation
public FormRepresentation(AbstractModel model)
-
FormRepresentation
public FormRepresentation()
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getVersion
public Integer getVersion()
-
setVersion
public void setVersion(Integer version)
-
getLastUpdatedBy
public String getLastUpdatedBy()
-
setLastUpdatedBy
public void setLastUpdatedBy(String lastUpdatedBy)
-
getLastUpdated
public Date getLastUpdated()
-
setLastUpdated
public void setLastUpdated(Date lastUpdated)
-
getFormDefinition
public SimpleFormModel getFormDefinition()
-
setFormDefinition
public void setFormDefinition(SimpleFormModel formDefinition)
-
-