xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd" id="_D5VzAHElEeaJwpcpVN5gXw" exporter="camunda modeler" exporterVersion="2.7.0" targetNamespace="http://camunda.org/schema/1.0/bpmn"> |
| 3 | <bpmn2:process id="GenericGetService" name="GenericGetService" isExecutable="true"> |
| 4 | <bpmn2:scriptTask id="intialization" name="Initialization" scriptFormat="groovy"> |
| 5 | <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming> |
| 6 | <bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing> |
| 7 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| 8 | GenericGetService getService = new GenericGetService() |
| 9 | getService.preProcessRequest(execution) |
| 10 | ]]></bpmn2:script> |
| 11 | </bpmn2:scriptTask> |
| 12 | <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="intialization" targetRef="getUrl"/> |
| 13 | <bpmn2:exclusiveGateway id="getUrl" name="Get Url?" default="getUrlNo"> |
| 14 | <bpmn2:incoming>SequenceFlow_2</bpmn2:incoming> |
| 15 | <bpmn2:outgoing>getUrlYes</bpmn2:outgoing> |
| 16 | <bpmn2:outgoing>getUrlNo</bpmn2:outgoing> |
| 17 | </bpmn2:exclusiveGateway> |
| 18 | <bpmn2:sequenceFlow id="getUrlYes" name="Yes" sourceRef="getUrl" targetRef="obtain"> |
| 19 | <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGS_obtainServiceInstanceUrl" ) == true}]]></bpmn2:conditionExpression> |
| 20 | </bpmn2:sequenceFlow> |
| 21 | <bpmn2:sequenceFlow id="getUrlNo" name="No" sourceRef="getUrl" targetRef="ExclusiveGateway_2"/> |
| 22 | <bpmn2:subProcess id="bpmnExceptionHandlingSubProcess" name="Error Handling Sub Process" triggeredByEvent="true"> |
| 23 | <bpmn2:scriptTask id="processBPMNException" name="Process Error" scriptFormat="groovy"> |
| 24 | <bpmn2:incoming>SequenceFlow_7</bpmn2:incoming> |
| 25 | <bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing> |
| 26 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 27 | |
| 28 | ExceptionUtil ex = new ExceptionUtil() |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame^] | 29 | ex.processSubflowsBPMNException(execution)]]></bpmn2:script> |
| 30 | </bpmn2:scriptTask> |
| 31 | <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="processBPMNException" targetRef="EndEvent_2"/> |
| 32 | <bpmn2:startEvent id="StartEvent_2"> |
| 33 | <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing> |
| 34 | <bpmn2:errorEventDefinition id="ErrorEventDefinition_1"/> |
| 35 | </bpmn2:startEvent> |
| 36 | <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="StartEvent_2" targetRef="processBPMNException"/> |
| 37 | <bpmn2:endEvent id="EndEvent_2"> |
| 38 | <bpmn2:incoming>SequenceFlow_8</bpmn2:incoming> |
| 39 | </bpmn2:endEvent> |
| 40 | </bpmn2:subProcess> |
| 41 | <bpmn2:scriptTask id="toggleSuccess" name="Toggle Success Indicator" scriptFormat="groovy"> |
| 42 | <bpmn2:incoming>SequenceFlow_3</bpmn2:incoming> |
| 43 | <bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing> |
| 44 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| 45 | GenericGetService getService = new GenericGetService() |
| 46 | getService.setSuccessIndicator(execution, true) |
| 47 | ]]></bpmn2:script> |
| 48 | </bpmn2:scriptTask> |
| 49 | <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="toggleSuccess" targetRef="EndEvent_1"/> |
| 50 | <bpmn2:scriptTask id="getServiceInstance" name="GET
Service Instance" scriptFormat="groovy"> |
| 51 | <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming> |
| 52 | <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing> |
| 53 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| 54 | GenericGetService getService = new GenericGetService() |
| 55 | getService.getServiceObject(execution)]]></bpmn2:script> |
| 56 | </bpmn2:scriptTask> |
| 57 | <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="getServiceInstance" targetRef="toggleSuccess"/> |
| 58 | <bpmn2:exclusiveGateway id="ExclusiveGateway_2"> |
| 59 | <bpmn2:incoming>getUrlNo</bpmn2:incoming> |
| 60 | <bpmn2:incoming>foundYes</bpmn2:incoming> |
| 61 | <bpmn2:outgoing>SequenceFlow_5</bpmn2:outgoing> |
| 62 | </bpmn2:exclusiveGateway> |
| 63 | <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="ExclusiveGateway_2" targetRef="getServiceInstance"/> |
| 64 | <bpmn2:scriptTask id="obtainServiceUrlById" name="Obtain Service URL Using
Id" scriptFormat="groovy"> |
| 65 | <bpmn2:incoming>obtainById</bpmn2:incoming> |
| 66 | <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing> |
| 67 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| 68 | GenericGetService getService = new GenericGetService() |
| 69 | getService.obtainServiceInstanceUrlById(execution)]]></bpmn2:script> |
| 70 | </bpmn2:scriptTask> |
| 71 | <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="obtainServiceUrlById" targetRef="ExclusiveGateway_3"/> |
| 72 | <bpmn2:scriptTask id="obtainServiceUrlByName" name="Obtain Service Url Using
Name" scriptFormat="groovy"> |
| 73 | <bpmn2:incoming>obtainByName</bpmn2:incoming> |
| 74 | <bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing> |
| 75 | <bpmn2:script><![CDATA[import org.openecomp.mso.bpmn.common.scripts.* |
| 76 | GenericGetService getService = new GenericGetService() |
| 77 | getService.obtainServiceInstanceUrlByName(execution)]]></bpmn2:script> |
| 78 | </bpmn2:scriptTask> |
| 79 | <bpmn2:sequenceFlow id="SequenceFlow_13" name="" sourceRef="obtainServiceUrlByName" targetRef="ExclusiveGateway_3"/> |
| 80 | <bpmn2:exclusiveGateway id="obtain" name="Obtain By?" default="obtainById"> |
| 81 | <bpmn2:incoming>getUrlYes</bpmn2:incoming> |
| 82 | <bpmn2:outgoing>obtainById</bpmn2:outgoing> |
| 83 | <bpmn2:outgoing>obtainByName</bpmn2:outgoing> |
| 84 | </bpmn2:exclusiveGateway> |
| 85 | <bpmn2:sequenceFlow id="obtainById" name="Id" sourceRef="obtain" targetRef="obtainServiceUrlById"/> |
| 86 | <bpmn2:sequenceFlow id="obtainByName" name="Name" sourceRef="obtain" targetRef="obtainServiceUrlByName"> |
| 87 | <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGS_obtainServiceInstanceUrlByName" ) == true}]]></bpmn2:conditionExpression> |
| 88 | </bpmn2:sequenceFlow> |
| 89 | <bpmn2:exclusiveGateway id="serviceFoundCheck" name="Service Exist?" default="notFound"> |
| 90 | <bpmn2:incoming>SequenceFlow_14</bpmn2:incoming> |
| 91 | <bpmn2:outgoing>foundYes</bpmn2:outgoing> |
| 92 | <bpmn2:outgoing>notFound</bpmn2:outgoing> |
| 93 | </bpmn2:exclusiveGateway> |
| 94 | <bpmn2:sequenceFlow id="foundYes" name="Yes" sourceRef="serviceFoundCheck" targetRef="ExclusiveGateway_2"> |
| 95 | <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGS_FoundIndicator" ) == true}]]></bpmn2:conditionExpression> |
| 96 | </bpmn2:sequenceFlow> |
| 97 | <bpmn2:sequenceFlow id="notFound" name="No" sourceRef="serviceFoundCheck" targetRef="EndEvent_3"/> |
| 98 | <bpmn2:endEvent id="EndEvent_3"> |
| 99 | <bpmn2:incoming>notFound</bpmn2:incoming> |
| 100 | <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_29"/> |
| 101 | </bpmn2:endEvent> |
| 102 | <bpmn2:exclusiveGateway id="ExclusiveGateway_3"> |
| 103 | <bpmn2:incoming>SequenceFlow_4</bpmn2:incoming> |
| 104 | <bpmn2:incoming>SequenceFlow_13</bpmn2:incoming> |
| 105 | <bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing> |
| 106 | </bpmn2:exclusiveGateway> |
| 107 | <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="ExclusiveGateway_3" targetRef="serviceFoundCheck"/> |
| 108 | <bpmn2:endEvent id="EndEvent_1"> |
| 109 | <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming> |
| 110 | <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_26"/> |
| 111 | </bpmn2:endEvent> |
| 112 | <bpmn2:startEvent id="StartEvent_1"> |
| 113 | <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing> |
| 114 | </bpmn2:startEvent> |
| 115 | <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="intialization"/> |
| 116 | </bpmn2:process> |
| 117 | <bpmndi:BPMNDiagram id="BPMNDiagram_1"> |
| 118 | <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="GenericGetService"> |
| 119 | <bpmndi:BPMNShape id="_BPMNShape_StartEvent_69" bpmnElement="StartEvent_1"> |
| 120 | <dc:Bounds height="36.0" width="36.0" x="108.0" y="264.0"/> |
| 121 | <bpmndi:BPMNLabel> |
| 122 | <dc:Bounds height="0.0" width="0.0" x="126.0" y="305.0"/> |
| 123 | </bpmndi:BPMNLabel> |
| 124 | </bpmndi:BPMNShape> |
| 125 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_288" bpmnElement="intialization"> |
| 126 | <dc:Bounds height="80.0" width="100.0" x="228.0" y="242.0"/> |
| 127 | </bpmndi:BPMNShape> |
| 128 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_69" targetElement="_BPMNShape_ScriptTask_288"> |
| 129 | <di:waypoint xsi:type="dc:Point" x="144.0" y="282.0"/> |
| 130 | <di:waypoint xsi:type="dc:Point" x="228.0" y="282.0"/> |
| 131 | <bpmndi:BPMNLabel> |
| 132 | <dc:Bounds height="6.0" width="6.0" x="177.0" y="282.0"/> |
| 133 | </bpmndi:BPMNLabel> |
| 134 | </bpmndi:BPMNEdge> |
| 135 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_227" bpmnElement="getUrl" isMarkerVisible="true"> |
| 136 | <dc:Bounds height="50.0" width="50.0" x="372.0" y="256.0"/> |
| 137 | <bpmndi:BPMNLabel> |
| 138 | <dc:Bounds height="22.0" width="70.0" x="408.0" y="286.0"/> |
| 139 | </bpmndi:BPMNLabel> |
| 140 | </bpmndi:BPMNShape> |
| 141 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_288" targetElement="_BPMNShape_ExclusiveGateway_227"> |
| 142 | <di:waypoint xsi:type="dc:Point" x="328.0" y="282.0"/> |
| 143 | <di:waypoint xsi:type="dc:Point" x="372.0" y="281.0"/> |
| 144 | <bpmndi:BPMNLabel> |
| 145 | <dc:Bounds height="6.0" width="6.0" x="350.0" y="281.0"/> |
| 146 | </bpmndi:BPMNLabel> |
| 147 | </bpmndi:BPMNEdge> |
| 148 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_289" bpmnElement="obtainServiceUrlById"> |
| 149 | <dc:Bounds height="80.0" width="100.0" x="528.0" y="197.0"/> |
| 150 | </bpmndi:BPMNShape> |
| 151 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_228" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true"> |
| 152 | <dc:Bounds height="50.0" width="50.0" x="738.0" y="256.0"/> |
| 153 | <bpmndi:BPMNLabel> |
| 154 | <dc:Bounds height="0.0" width="0.0" x="763.0" y="311.0"/> |
| 155 | </bpmndi:BPMNLabel> |
| 156 | </bpmndi:BPMNShape> |
| 157 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_290" bpmnElement="getServiceInstance"> |
| 158 | <dc:Bounds height="80.0" width="100.0" x="820.0" y="242.0"/> |
| 159 | </bpmndi:BPMNShape> |
| 160 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="getUrlYes" sourceElement="_BPMNShape_ExclusiveGateway_227" targetElement="_BPMNShape_ExclusiveGateway_233"> |
| 161 | <di:waypoint xsi:type="dc:Point" x="397.0" y="256.0"/> |
| 162 | <di:waypoint xsi:type="dc:Point" x="397.0" y="170.0"/> |
| 163 | <di:waypoint xsi:type="dc:Point" x="446.0" y="170.0"/> |
| 164 | <bpmndi:BPMNLabel> |
| 165 | <dc:Bounds height="22.0" width="29.0" x="397.0" y="213.0"/> |
| 166 | </bpmndi:BPMNLabel> |
| 167 | </bpmndi:BPMNEdge> |
| 168 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ScriptTask_289" targetElement="_BPMNShape_ExclusiveGateway_234"> |
| 169 | <di:waypoint xsi:type="dc:Point" x="628.0" y="237.0"/> |
| 170 | <di:waypoint xsi:type="dc:Point" x="671.0" y="237.0"/> |
| 171 | <di:waypoint xsi:type="dc:Point" x="671.0" y="195.0"/> |
| 172 | <bpmndi:BPMNLabel> |
| 173 | <dc:Bounds height="6.0" width="6.0" x="668.0" y="221.0"/> |
| 174 | </bpmndi:BPMNLabel> |
| 175 | </bpmndi:BPMNEdge> |
| 176 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ExclusiveGateway_228" targetElement="_BPMNShape_ScriptTask_290"> |
| 177 | <di:waypoint xsi:type="dc:Point" x="788.0" y="281.0"/> |
| 178 | <di:waypoint xsi:type="dc:Point" x="820.0" y="282.0"/> |
| 179 | <bpmndi:BPMNLabel> |
| 180 | <dc:Bounds height="6.0" width="6.0" x="798.0" y="281.0"/> |
| 181 | </bpmndi:BPMNLabel> |
| 182 | </bpmndi:BPMNEdge> |
| 183 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="getUrlNo" sourceElement="_BPMNShape_ExclusiveGateway_227" targetElement="_BPMNShape_ExclusiveGateway_228"> |
| 184 | <di:waypoint xsi:type="dc:Point" x="397.0" y="306.0"/> |
| 185 | <di:waypoint xsi:type="dc:Point" x="397.0" y="370.0"/> |
| 186 | <di:waypoint xsi:type="dc:Point" x="763.0" y="370.0"/> |
| 187 | <di:waypoint xsi:type="dc:Point" x="763.0" y="306.0"/> |
| 188 | <bpmndi:BPMNLabel> |
| 189 | <dc:Bounds height="22.0" width="22.0" x="400.0" y="324.0"/> |
| 190 | </bpmndi:BPMNLabel> |
| 191 | </bpmndi:BPMNEdge> |
| 192 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_291" bpmnElement="toggleSuccess"> |
| 193 | <dc:Bounds height="80.0" width="100.0" x="960.0" y="242.0"/> |
| 194 | </bpmndi:BPMNShape> |
| 195 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_290" targetElement="_BPMNShape_ScriptTask_291"> |
| 196 | <di:waypoint xsi:type="dc:Point" x="920.0" y="282.0"/> |
| 197 | <di:waypoint xsi:type="dc:Point" x="960.0" y="282.0"/> |
| 198 | <bpmndi:BPMNLabel> |
| 199 | <dc:Bounds height="6.0" width="6.0" x="937.0" y="282.0"/> |
| 200 | </bpmndi:BPMNLabel> |
| 201 | </bpmndi:BPMNEdge> |
| 202 | <bpmndi:BPMNShape id="_BPMNShape_EndEvent_223" bpmnElement="EndEvent_1"> |
| 203 | <dc:Bounds height="36.0" width="36.0" x="1133.0" y="264.0"/> |
| 204 | <bpmndi:BPMNLabel> |
| 205 | <dc:Bounds height="0.0" width="0.0" x="1151.0" y="305.0"/> |
| 206 | </bpmndi:BPMNLabel> |
| 207 | </bpmndi:BPMNShape> |
| 208 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_291" targetElement="_BPMNShape_EndEvent_223"> |
| 209 | <di:waypoint xsi:type="dc:Point" x="1060.0" y="282.0"/> |
| 210 | <di:waypoint xsi:type="dc:Point" x="1133.0" y="282.0"/> |
| 211 | <bpmndi:BPMNLabel> |
| 212 | <dc:Bounds height="6.0" width="6.0" x="1100.0" y="282.0"/> |
| 213 | </bpmndi:BPMNLabel> |
| 214 | </bpmndi:BPMNEdge> |
| 215 | <bpmndi:BPMNShape id="_BPMNShape_SubProcess_25" bpmnElement="bpmnExceptionHandlingSubProcess" isExpanded="true"> |
| 216 | <dc:Bounds height="169.0" width="325.0" x="152.0" y="468.0"/> |
| 217 | </bpmndi:BPMNShape> |
| 218 | <bpmndi:BPMNShape id="_BPMNShape_StartEvent_70" bpmnElement="StartEvent_2"> |
| 219 | <dc:Bounds height="36.0" width="36.0" x="176.0" y="535.0"/> |
| 220 | <bpmndi:BPMNLabel> |
| 221 | <dc:Bounds height="0.0" width="0.0" x="194.0" y="576.0"/> |
| 222 | </bpmndi:BPMNLabel> |
| 223 | </bpmndi:BPMNShape> |
| 224 | <bpmndi:BPMNShape id="_BPMNShape_EndEvent_224" bpmnElement="EndEvent_2"> |
| 225 | <dc:Bounds height="36.0" width="36.0" x="416.0" y="535.0"/> |
| 226 | <bpmndi:BPMNLabel> |
| 227 | <dc:Bounds height="0.0" width="0.0" x="434.0" y="576.0"/> |
| 228 | </bpmndi:BPMNLabel> |
| 229 | </bpmndi:BPMNShape> |
| 230 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_292" bpmnElement="processBPMNException"> |
| 231 | <dc:Bounds height="80.0" width="100.0" x="265.0" y="513.0"/> |
| 232 | </bpmndi:BPMNShape> |
| 233 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_StartEvent_70" targetElement="_BPMNShape_ScriptTask_292"> |
| 234 | <di:waypoint xsi:type="dc:Point" x="212.0" y="553.0"/> |
| 235 | <di:waypoint xsi:type="dc:Point" x="265.0" y="553.0"/> |
| 236 | <bpmndi:BPMNLabel> |
| 237 | <dc:Bounds height="6.0" width="6.0" x="233.0" y="553.0"/> |
| 238 | </bpmndi:BPMNLabel> |
| 239 | </bpmndi:BPMNEdge> |
| 240 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_292" targetElement="_BPMNShape_EndEvent_224"> |
| 241 | <di:waypoint xsi:type="dc:Point" x="365.0" y="553.0"/> |
| 242 | <di:waypoint xsi:type="dc:Point" x="416.0" y="553.0"/> |
| 243 | <bpmndi:BPMNLabel> |
| 244 | <dc:Bounds height="6.0" width="6.0" x="385.0" y="553.0"/> |
| 245 | </bpmndi:BPMNLabel> |
| 246 | </bpmndi:BPMNEdge> |
| 247 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_301" bpmnElement="obtainServiceUrlByName"> |
| 248 | <dc:Bounds height="80.0" width="100.0" x="528.0" y="59.0"/> |
| 249 | </bpmndi:BPMNShape> |
| 250 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_233" bpmnElement="obtain" isMarkerVisible="true"> |
| 251 | <dc:Bounds height="50.0" width="50.0" x="446.0" y="145.0"/> |
| 252 | <bpmndi:BPMNLabel> |
| 253 | <dc:Bounds height="22.0" width="71.0" x="496.0" y="162.0"/> |
| 254 | </bpmndi:BPMNLabel> |
| 255 | </bpmndi:BPMNShape> |
| 256 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_234" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true"> |
| 257 | <dc:Bounds height="50.0" width="50.0" x="646.0" y="145.0"/> |
| 258 | <bpmndi:BPMNLabel> |
| 259 | <dc:Bounds height="0.0" width="0.0" x="671.0" y="200.0"/> |
| 260 | </bpmndi:BPMNLabel> |
| 261 | </bpmndi:BPMNShape> |
| 262 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="obtainById" sourceElement="_BPMNShape_ExclusiveGateway_233" targetElement="_BPMNShape_ScriptTask_289"> |
| 263 | <di:waypoint xsi:type="dc:Point" x="471.0" y="195.0"/> |
| 264 | <di:waypoint xsi:type="dc:Point" x="471.0" y="236.0"/> |
| 265 | <di:waypoint xsi:type="dc:Point" x="528.0" y="237.0"/> |
| 266 | <bpmndi:BPMNLabel> |
| 267 | <dc:Bounds height="22.0" width="16.0" x="476.0" y="207.0"/> |
| 268 | </bpmndi:BPMNLabel> |
| 269 | </bpmndi:BPMNEdge> |
| 270 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="obtainByName" sourceElement="_BPMNShape_ExclusiveGateway_233" targetElement="_BPMNShape_ScriptTask_301"> |
| 271 | <di:waypoint xsi:type="dc:Point" x="471.0" y="145.0"/> |
| 272 | <di:waypoint xsi:type="dc:Point" x="471.0" y="99.0"/> |
| 273 | <di:waypoint xsi:type="dc:Point" x="528.0" y="99.0"/> |
| 274 | <bpmndi:BPMNLabel> |
| 275 | <dc:Bounds height="22.0" width="40.0" x="471.0" y="115.0"/> |
| 276 | </bpmndi:BPMNLabel> |
| 277 | </bpmndi:BPMNEdge> |
| 278 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_13" sourceElement="_BPMNShape_ScriptTask_301" targetElement="_BPMNShape_ExclusiveGateway_234"> |
| 279 | <di:waypoint xsi:type="dc:Point" x="628.0" y="99.0"/> |
| 280 | <di:waypoint xsi:type="dc:Point" x="671.0" y="99.0"/> |
| 281 | <di:waypoint xsi:type="dc:Point" x="671.0" y="145.0"/> |
| 282 | <bpmndi:BPMNLabel> |
| 283 | <dc:Bounds height="6.0" width="6.0" x="665.0" y="99.0"/> |
| 284 | </bpmndi:BPMNLabel> |
| 285 | </bpmndi:BPMNEdge> |
| 286 | <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_235" bpmnElement="serviceFoundCheck" isMarkerVisible="true"> |
| 287 | <dc:Bounds height="50.0" width="50.0" x="738.0" y="145.0"/> |
| 288 | <bpmndi:BPMNLabel> |
| 289 | <dc:Bounds height="22.0" width="59.0" x="735.0" y="125.0"/> |
| 290 | </bpmndi:BPMNLabel> |
| 291 | </bpmndi:BPMNShape> |
| 292 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ExclusiveGateway_234" targetElement="_BPMNShape_ExclusiveGateway_235"> |
| 293 | <di:waypoint xsi:type="dc:Point" x="696.0" y="170.0"/> |
| 294 | <di:waypoint xsi:type="dc:Point" x="738.0" y="170.0"/> |
| 295 | <bpmndi:BPMNLabel> |
| 296 | <dc:Bounds height="6.0" width="6.0" x="704.0" y="170.0"/> |
| 297 | </bpmndi:BPMNLabel> |
| 298 | </bpmndi:BPMNEdge> |
| 299 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="foundYes" sourceElement="_BPMNShape_ExclusiveGateway_235" targetElement="_BPMNShape_ExclusiveGateway_228"> |
| 300 | <di:waypoint xsi:type="dc:Point" x="763.0" y="195.0"/> |
| 301 | <di:waypoint xsi:type="dc:Point" x="763.0" y="256.0"/> |
| 302 | <bpmndi:BPMNLabel> |
| 303 | <dc:Bounds height="22.0" width="29.0" x="762.0" y="205.0"/> |
| 304 | </bpmndi:BPMNLabel> |
| 305 | </bpmndi:BPMNEdge> |
| 306 | <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="notFound" sourceElement="_BPMNShape_ExclusiveGateway_235" targetElement="_BPMNShape_EndEvent_229"> |
| 307 | <di:waypoint xsi:type="dc:Point" x="788.0" y="170.0"/> |
| 308 | <di:waypoint xsi:type="dc:Point" x="877.0" y="171.0"/> |
| 309 | <bpmndi:BPMNLabel> |
| 310 | <dc:Bounds height="22.0" width="22.0" x="798.0" y="170.0"/> |
| 311 | </bpmndi:BPMNLabel> |
| 312 | </bpmndi:BPMNEdge> |
| 313 | <bpmndi:BPMNShape id="_BPMNShape_EndEvent_229" bpmnElement="EndEvent_3"> |
| 314 | <dc:Bounds height="36.0" width="36.0" x="877.0" y="153.0"/> |
| 315 | <bpmndi:BPMNLabel> |
| 316 | <dc:Bounds height="0.0" width="0.0" x="895.0" y="194.0"/> |
| 317 | </bpmndi:BPMNLabel> |
| 318 | </bpmndi:BPMNShape> |
| 319 | </bpmndi:BPMNPlane> |
| 320 | </bpmndi:BPMNDiagram> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 321 | </bpmn2:definitions> |