Package org.flowable.ui.modeler.domain
Class AppModelDefinition
- java.lang.Object
-
- org.flowable.ui.modeler.domain.AppModelDefinition
-
public class AppModelDefinition extends Object
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected StringcreatedByprotected Stringdescriptionprotected Stringidprotected DatelastUpdatedprotected StringlastUpdatedByprotected IntegermodelTypeprotected Stringnameprotected LongstencilSetIdprotected Integerversion
-
Constructor Summary
Constructors Constructor Description AppModelDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCreatedBy()StringgetDescription()StringgetId()DategetLastUpdated()StringgetLastUpdatedBy()IntegergetModelType()StringgetName()LonggetStencilSetId()IntegergetVersion()voidsetCreatedBy(String createdBy)voidsetDescription(String description)voidsetId(String id)voidsetLastUpdated(Date lastUpdated)voidsetLastUpdatedBy(String lastUpdatedBy)voidsetModelType(Integer modelType)voidsetName(String name)voidsetStencilSetId(Long stencilSetId)voidsetVersion(Integer version)
-
-
-
Field Detail
-
id
protected String id
-
name
protected String name
-
version
protected Integer version
-
modelType
protected Integer modelType
-
description
protected String description
-
stencilSetId
protected Long stencilSetId
-
createdBy
protected String createdBy
-
lastUpdatedBy
protected String lastUpdatedBy
-
lastUpdated
protected Date lastUpdated
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getVersion
public Integer getVersion()
-
setVersion
public void setVersion(Integer version)
-
getModelType
public Integer getModelType()
-
setModelType
public void setModelType(Integer modelType)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getStencilSetId
public Long getStencilSetId()
-
setStencilSetId
public void setStencilSetId(Long stencilSetId)
-
getCreatedBy
public String getCreatedBy()
-
setCreatedBy
public void setCreatedBy(String createdBy)
-
getLastUpdatedBy
public String getLastUpdatedBy()
-
setLastUpdatedBy
public void setLastUpdatedBy(String lastUpdatedBy)
-
getLastUpdated
public Date getLastUpdated()
-
setLastUpdated
public void setLastUpdated(Date lastUpdated)
-
-