Class VariableInstanceResponse
- java.lang.Object
-
- org.flowable.rest.service.api.runtime.VariableInstanceResponse
-
public class VariableInstanceResponse extends Object
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected StringexecutionIdprotected Stringidprotected StringprocessInstanceIdprotected StringprocessInstanceUrlprotected StringtaskIdprotected RestVariablevariable
-
Constructor Summary
Constructors Constructor Description VariableInstanceResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExecutionId()StringgetId()StringgetProcessInstanceId()StringgetProcessInstanceUrl()StringgetTaskId()RestVariablegetVariable()voidsetExecutionId(String executionId)voidsetId(String id)voidsetProcessInstanceId(String processInstanceId)voidsetProcessInstanceUrl(String processInstanceUrl)voidsetTaskId(String taskId)voidsetVariable(RestVariable variable)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getProcessInstanceId
public String getProcessInstanceId()
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
-
getProcessInstanceUrl
public String getProcessInstanceUrl()
-
setProcessInstanceUrl
public void setProcessInstanceUrl(String processInstanceUrl)
-
getTaskId
public String getTaskId()
-
setTaskId
public void setTaskId(String taskId)
-
getVariable
public RestVariable getVariable()
-
setVariable
public void setVariable(RestVariable variable)
-
getExecutionId
public String getExecutionId()
-
setExecutionId
public void setExecutionId(String executionId)
-
-