Class ProcessDefinitionRepresentation
- java.lang.Object
-
- org.flowable.ui.common.model.AbstractRepresentation
-
- org.flowable.ui.task.model.runtime.ProcessDefinitionRepresentation
-
public class ProcessDefinitionRepresentation extends AbstractRepresentation
REST representation of a process definition.- Author:
- Tijs Rademakers
-
-
Constructor Summary
Constructors Constructor Description ProcessDefinitionRepresentation()ProcessDefinitionRepresentation(ProcessDefinition processDefinition)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCategory()StringgetDeploymentId()StringgetDescription()booleangetHasStartForm()StringgetId()StringgetKey()StringgetName()StringgetTenantId()intgetVersion()voidsetCategory(String category)voidsetDeploymentId(String deploymentId)voidsetDescription(String description)voidsetHasStartForm(boolean hasStartForm)voidsetId(String id)voidsetKey(String key)voidsetName(String name)voidsetTenantId(String tenantId)voidsetVersion(int version)
-
-
-
Field Detail
-
id
protected String id
-
name
protected String name
-
description
protected String description
-
key
protected String key
-
category
protected String category
-
version
protected int version
-
deploymentId
protected String deploymentId
-
tenantId
protected String tenantId
-
hasStartForm
protected boolean hasStartForm
-
-
Constructor Detail
-
ProcessDefinitionRepresentation
public ProcessDefinitionRepresentation(ProcessDefinition processDefinition)
-
ProcessDefinitionRepresentation
public ProcessDefinitionRepresentation()
-
-
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)
-
getCategory
public String getCategory()
-
setCategory
public void setCategory(String category)
-
getVersion
public int getVersion()
-
setVersion
public void setVersion(int version)
-
getDeploymentId
public String getDeploymentId()
-
setDeploymentId
public void setDeploymentId(String deploymentId)
-
getTenantId
public String getTenantId()
-
setTenantId
public void setTenantId(String tenantId)
-
setHasStartForm
public void setHasStartForm(boolean hasStartForm)
-
getHasStartForm
public boolean getHasStartForm()
-
-