提交 83a42bcb 编写于 作者: T trademak

Apply patch ACT-930 also to trunk

上级 2d77f84c
......@@ -29,12 +29,14 @@ public class ProcessInstancesResponse implements Serializable {
String businessKey;
String processDefinitionId;
String startTime;
String startUserId;
public ProcessInstancesResponse(HistoricProcessInstance processInstance) {
this.setId(processInstance.getId());
this.setBusinessKey(processInstance.getBusinessKey());
this.setStartTime(RequestUtil.dateToString(processInstance.getStartTime()));
this.setProcessDefinitionId(processInstance.getProcessDefinitionId());
this.setStartUserId(processInstance.getStartUserId());
}
public String getId() {
......@@ -68,4 +70,12 @@ public class ProcessInstancesResponse implements Serializable {
public void setProcessDefinitionId(String processDefinitionId) {
this.processDefinitionId = processDefinitionId;
}
public String getStartUserId() {
return startUserId;
}
public void setStartUserId(String startUserId) {
this.startUserId = startUserId;
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册