|
|
@ -279,11 +279,16 @@ public class ProcessDefinition { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setGlobalParams(String globalParams) { |
|
|
|
public void setGlobalParams(String globalParams) { |
|
|
|
|
|
|
|
if (globalParams == null){ |
|
|
|
|
|
|
|
this.globalParamList = new ArrayList<>(); |
|
|
|
|
|
|
|
}else { |
|
|
|
try { |
|
|
|
try { |
|
|
|
this.globalParamList = JSONUtils.getMapper().readValue(globalParams, new TypeReference<List<Property>>() {}); |
|
|
|
this.globalParamList = JSONUtils.getMapper().readValue(globalParams, new TypeReference<List<Property>>() { |
|
|
|
|
|
|
|
}); |
|
|
|
} catch (IOException e) { |
|
|
|
} catch (IOException e) { |
|
|
|
logger.error("json parse exception!", e); |
|
|
|
logger.error("json parse exception!", e); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
this.globalParams = globalParams; |
|
|
|
this.globalParams = globalParams; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|