未验证 提交 2b040da9 编写于 作者: A Aleksandra Onych 提交者: GitHub

restore getter and setter for ProcessDefinitionKey (#3806)

* restore getter and setter for ProcessDefinitionKey

* fix whitespace
上级 67d9452a
......@@ -170,6 +170,14 @@ public class CallActivityBehavior extends AbstractBpmnActivityBehavior implement
leave(execution);
}
public void setProcessDefinitionKey(String processDefinitionKey) {
this.processDefinitionKey = processDefinitionKey;
}
public String getProcessDefinitionKey() {
return processDefinitionKey;
}
// Allow subclass to determine which version of a process to start.
protected ProcessDefinition findProcessDefinition(String processDefinitionKey, String tenantId) {
if (tenantId == null || ProcessEngineConfiguration.NO_TENANT_ID.equals(tenantId)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册