自定义流程
流程包括:事件、活动、流、节点 事件 **Event:流程的状态,无条件执行 属性:id、name 起始 <startEvent id="***" name="***" /> 结束 <endEvent id="***" name="***" /> 活动 activity:单个的任务属性:id、name、URI子元素1:input 属性:name、type、UIR 子元素2:output 属性:name、type、UIR如:决策服务 <activity id="decide1" name="决策服务1" URI="www.baidu.com"> <input name="Strategy1.xls" type="File" UIR="www.google.com/1" /> <input name="Result.properties" type="File" UIR="www.google.com/2" /> <output name="Strategy3.xls" type="File" UIR="www.google.com/3" /> <output name="Result2.properties" type="File" UIR="www.google.com/4" /> </activity> 流 flow:箭头属性:id、name、from、to