Package org.flowable.ui.modeler.model
Class FormSaveRepresentation
- java.lang.Object
-
- org.flowable.ui.common.model.AbstractRepresentation
-
- org.flowable.ui.modeler.model.FormSaveRepresentation
-
public class FormSaveRepresentation extends AbstractRepresentation
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringcommentprotected StringformImageBase64protected FormRepresentationformRepresentationprotected booleannewVersionprotected booleanreusable
-
Constructor Summary
Constructors Constructor Description FormSaveRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetComment()StringgetFormImageBase64()FormRepresentationgetFormRepresentation()booleanisNewVersion()booleanisReusable()voidsetComment(String comment)voidsetFormImageBase64(String formImageBase64)voidsetFormRepresentation(FormRepresentation formRepresentation)voidsetNewVersion(boolean newVersion)voidsetReusable(boolean reusable)
-
-
-
Field Detail
-
reusable
protected boolean reusable
-
newVersion
protected boolean newVersion
-
comment
protected String comment
-
formImageBase64
protected String formImageBase64
-
formRepresentation
protected FormRepresentation formRepresentation
-
-
Method Detail
-
isReusable
public boolean isReusable()
-
setReusable
public void setReusable(boolean reusable)
-
isNewVersion
public boolean isNewVersion()
-
setNewVersion
public void setNewVersion(boolean newVersion)
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
getFormImageBase64
public String getFormImageBase64()
-
setFormImageBase64
public void setFormImageBase64(String formImageBase64)
-
getFormRepresentation
public FormRepresentation getFormRepresentation()
-
setFormRepresentation
public void setFormRepresentation(FormRepresentation formRepresentation)
-
-