blob: 2015526874d577fa67fb9d5d99a2309d3b30b5e5 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?xml version="1.0" encoding="UTF-8"?>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -07002<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" id="_D5VzAHElEeaJwpcpVN5gXw" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.4.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
xg353yb6b7bef2017-04-11 13:30:42 +02003 <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>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +02008GenericGetService getService = new GenericGetService()
9getService.preProcessRequest(execution)
10]]></bpmn2:script>
11 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070012 <bpmn2:sequenceFlow id="SequenceFlow_2" name="" sourceRef="intialization" targetRef="getUrl" />
13 <bpmn2:exclusiveGateway id="getUrl" name="Need Object&#39;s Url?" default="getUrlNo">
xg353yb6b7bef2017-04-11 13:30:42 +020014 <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">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070019 <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression"><![CDATA[#{execution.getVariable("GENGS_obtainObjectsUrl" ) == true}]]></bpmn2:conditionExpression>
xg353yb6b7bef2017-04-11 13:30:42 +020020 </bpmn2:sequenceFlow>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070021 <bpmn2:sequenceFlow id="getUrlNo" name="No" sourceRef="getUrl" targetRef="ExclusiveGateway_2" />
xg353yb6b7bef2017-04-11 13:30:42 +020022 <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>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040026 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
ChrisC025301d2017-01-31 11:40:03 +010027
28ExceptionUtil ex = new ExceptionUtil()
xg353yb6b7bef2017-04-11 13:30:42 +020029ex.processSubflowsBPMNException(execution)]]></bpmn2:script>
30 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070031 <bpmn2:sequenceFlow id="SequenceFlow_8" name="" sourceRef="processBPMNException" targetRef="EndEvent_2" />
xg353yb6b7bef2017-04-11 13:30:42 +020032 <bpmn2:startEvent id="StartEvent_2">
33 <bpmn2:outgoing>SequenceFlow_7</bpmn2:outgoing>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070034 <bpmn2:errorEventDefinition id="ErrorEventDefinition_1" />
xg353yb6b7bef2017-04-11 13:30:42 +020035 </bpmn2:startEvent>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070036 <bpmn2:sequenceFlow id="SequenceFlow_7" name="" sourceRef="StartEvent_2" targetRef="processBPMNException" />
xg353yb6b7bef2017-04-11 13:30:42 +020037 <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>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040044 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +020045GenericGetService getService = new GenericGetService()
46getService.setSuccessIndicator(execution, true)
47]]></bpmn2:script>
48 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070049 <bpmn2:sequenceFlow id="SequenceFlow_6" name="" sourceRef="toggleSuccess" targetRef="EndEvent_1" />
50 <bpmn2:scriptTask id="getServiceInstance" name="GET&#10;Object" scriptFormat="groovy">
xg353yb6b7bef2017-04-11 13:30:42 +020051 <bpmn2:incoming>SequenceFlow_5</bpmn2:incoming>
52 <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040053 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +020054GenericGetService getService = new GenericGetService()
55getService.getServiceObject(execution)]]></bpmn2:script>
56 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070057 <bpmn2:sequenceFlow id="SequenceFlow_3" name="" sourceRef="getServiceInstance" targetRef="toggleSuccess" />
xg353yb6b7bef2017-04-11 13:30:42 +020058 <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>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070063 <bpmn2:sequenceFlow id="SequenceFlow_5" name="" sourceRef="ExclusiveGateway_2" targetRef="getServiceInstance" />
64 <bpmn2:scriptTask id="obtainServiceUrlById" name="Node Query Using Id&#10;" scriptFormat="groovy">
xg353yb6b7bef2017-04-11 13:30:42 +020065 <bpmn2:incoming>obtainById</bpmn2:incoming>
66 <bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040067 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +020068GenericGetService getService = new GenericGetService()
69getService.obtainServiceInstanceUrlById(execution)]]></bpmn2:script>
70 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070071 <bpmn2:sequenceFlow id="SequenceFlow_4" name="" sourceRef="obtainServiceUrlById" targetRef="ExclusiveGateway_3" />
72 <bpmn2:scriptTask id="obtainServiceUrlByName" name="Node Query Using Name" scriptFormat="groovy">
xg353yb6b7bef2017-04-11 13:30:42 +020073 <bpmn2:incoming>obtainByName</bpmn2:incoming>
74 <bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040075 <bpmn2:script><![CDATA[import org.onap.so.bpmn.common.scripts.*
xg353yb6b7bef2017-04-11 13:30:42 +020076GenericGetService getService = new GenericGetService()
77getService.obtainServiceInstanceUrlByName(execution)]]></bpmn2:script>
78 </bpmn2:scriptTask>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070079 <bpmn2:sequenceFlow id="SequenceFlow_13" name="" sourceRef="obtainServiceUrlByName" targetRef="ExclusiveGateway_3" />
80 <bpmn2:exclusiveGateway id="obtain" name="Query By?" default="obtainById">
xg353yb6b7bef2017-04-11 13:30:42 +020081 <bpmn2:incoming>getUrlYes</bpmn2:incoming>
82 <bpmn2:outgoing>obtainById</bpmn2:outgoing>
83 <bpmn2:outgoing>obtainByName</bpmn2:outgoing>
84 </bpmn2:exclusiveGateway>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070085 <bpmn2:sequenceFlow id="obtainById" name="Id" sourceRef="obtain" targetRef="obtainServiceUrlById" />
xg353yb6b7bef2017-04-11 13:30:42 +020086 <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>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -070097 <bpmn2:sequenceFlow id="notFound" name="No" sourceRef="serviceFoundCheck" targetRef="EndEvent_3" />
xg353yb6b7bef2017-04-11 13:30:42 +020098 <bpmn2:endEvent id="EndEvent_3">
99 <bpmn2:incoming>notFound</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700100 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_29" />
xg353yb6b7bef2017-04-11 13:30:42 +0200101 </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>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700107 <bpmn2:sequenceFlow id="SequenceFlow_14" name="" sourceRef="ExclusiveGateway_3" targetRef="serviceFoundCheck" />
xg353yb6b7bef2017-04-11 13:30:42 +0200108 <bpmn2:endEvent id="EndEvent_1">
109 <bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700110 <bpmn2:terminateEventDefinition id="_TerminateEventDefinition_26" />
xg353yb6b7bef2017-04-11 13:30:42 +0200111 </bpmn2:endEvent>
112 <bpmn2:startEvent id="StartEvent_1">
113 <bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
114 </bpmn2:startEvent>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700115 <bpmn2:sequenceFlow id="SequenceFlow_1" name="" sourceRef="StartEvent_1" targetRef="intialization" />
xg353yb6b7bef2017-04-11 13:30:42 +0200116 </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">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700120 <dc:Bounds x="108" y="264" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200121 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700122 <dc:Bounds x="126" y="305" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200123 </bpmndi:BPMNLabel>
124 </bpmndi:BPMNShape>
125 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_288" bpmnElement="intialization">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700126 <dc:Bounds x="228" y="242" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200127 </bpmndi:BPMNShape>
128 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="_BPMNShape_StartEvent_69" targetElement="_BPMNShape_ScriptTask_288">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700129 <di:waypoint xsi:type="dc:Point" x="144" y="282" />
130 <di:waypoint xsi:type="dc:Point" x="228" y="282" />
xg353yb6b7bef2017-04-11 13:30:42 +0200131 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700132 <dc:Bounds x="177" y="282" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200133 </bpmndi:BPMNLabel>
134 </bpmndi:BPMNEdge>
135 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_227" bpmnElement="getUrl" isMarkerVisible="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700136 <dc:Bounds x="372" y="256" width="50" height="50" />
xg353yb6b7bef2017-04-11 13:30:42 +0200137 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700138 <dc:Bounds x="420" y="282" width="72" height="24" />
xg353yb6b7bef2017-04-11 13:30:42 +0200139 </bpmndi:BPMNLabel>
140 </bpmndi:BPMNShape>
141 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="_BPMNShape_ScriptTask_288" targetElement="_BPMNShape_ExclusiveGateway_227">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700142 <di:waypoint xsi:type="dc:Point" x="328" y="282" />
143 <di:waypoint xsi:type="dc:Point" x="372" y="281" />
xg353yb6b7bef2017-04-11 13:30:42 +0200144 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700145 <dc:Bounds x="350" y="281" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200146 </bpmndi:BPMNLabel>
147 </bpmndi:BPMNEdge>
148 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_289" bpmnElement="obtainServiceUrlById">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700149 <dc:Bounds x="528" y="197" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200150 </bpmndi:BPMNShape>
151 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_228" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700152 <dc:Bounds x="738" y="256" width="50" height="50" />
xg353yb6b7bef2017-04-11 13:30:42 +0200153 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700154 <dc:Bounds x="763" y="311" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200155 </bpmndi:BPMNLabel>
156 </bpmndi:BPMNShape>
157 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_290" bpmnElement="getServiceInstance">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700158 <dc:Bounds x="820" y="242" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200159 </bpmndi:BPMNShape>
160 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_3" bpmnElement="getUrlYes" sourceElement="_BPMNShape_ExclusiveGateway_227" targetElement="_BPMNShape_ExclusiveGateway_233">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700161 <di:waypoint xsi:type="dc:Point" x="397" y="256" />
162 <di:waypoint xsi:type="dc:Point" x="397" y="170" />
163 <di:waypoint xsi:type="dc:Point" x="446" y="170" />
xg353yb6b7bef2017-04-11 13:30:42 +0200164 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700165 <dc:Bounds x="397" y="213" width="29" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200166 </bpmndi:BPMNLabel>
167 </bpmndi:BPMNEdge>
168 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="_BPMNShape_ScriptTask_289" targetElement="_BPMNShape_ExclusiveGateway_234">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700169 <di:waypoint xsi:type="dc:Point" x="628" y="237" />
170 <di:waypoint xsi:type="dc:Point" x="671" y="237" />
171 <di:waypoint xsi:type="dc:Point" x="671" y="195" />
xg353yb6b7bef2017-04-11 13:30:42 +0200172 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700173 <dc:Bounds x="668" y="221" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200174 </bpmndi:BPMNLabel>
175 </bpmndi:BPMNEdge>
176 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_5" bpmnElement="SequenceFlow_5" sourceElement="_BPMNShape_ExclusiveGateway_228" targetElement="_BPMNShape_ScriptTask_290">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700177 <di:waypoint xsi:type="dc:Point" x="788" y="281" />
178 <di:waypoint xsi:type="dc:Point" x="820" y="282" />
xg353yb6b7bef2017-04-11 13:30:42 +0200179 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700180 <dc:Bounds x="798" y="281" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200181 </bpmndi:BPMNLabel>
182 </bpmndi:BPMNEdge>
183 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="getUrlNo" sourceElement="_BPMNShape_ExclusiveGateway_227" targetElement="_BPMNShape_ExclusiveGateway_228">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700184 <di:waypoint xsi:type="dc:Point" x="397" y="306" />
185 <di:waypoint xsi:type="dc:Point" x="397" y="370" />
186 <di:waypoint xsi:type="dc:Point" x="763" y="370" />
187 <di:waypoint xsi:type="dc:Point" x="763" y="306" />
xg353yb6b7bef2017-04-11 13:30:42 +0200188 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700189 <dc:Bounds x="400" y="324" width="22" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200190 </bpmndi:BPMNLabel>
191 </bpmndi:BPMNEdge>
192 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_291" bpmnElement="toggleSuccess">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700193 <dc:Bounds x="960" y="242" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200194 </bpmndi:BPMNShape>
195 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_7" bpmnElement="SequenceFlow_3" sourceElement="_BPMNShape_ScriptTask_290" targetElement="_BPMNShape_ScriptTask_291">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700196 <di:waypoint xsi:type="dc:Point" x="920" y="282" />
197 <di:waypoint xsi:type="dc:Point" x="960" y="282" />
xg353yb6b7bef2017-04-11 13:30:42 +0200198 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700199 <dc:Bounds x="937" y="282" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200200 </bpmndi:BPMNLabel>
201 </bpmndi:BPMNEdge>
202 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_223" bpmnElement="EndEvent_1">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700203 <dc:Bounds x="1133" y="264" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200204 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700205 <dc:Bounds x="1151" y="305" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200206 </bpmndi:BPMNLabel>
207 </bpmndi:BPMNShape>
208 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_6" sourceElement="_BPMNShape_ScriptTask_291" targetElement="_BPMNShape_EndEvent_223">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700209 <di:waypoint xsi:type="dc:Point" x="1060" y="282" />
210 <di:waypoint xsi:type="dc:Point" x="1133" y="282" />
xg353yb6b7bef2017-04-11 13:30:42 +0200211 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700212 <dc:Bounds x="1100" y="282" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200213 </bpmndi:BPMNLabel>
214 </bpmndi:BPMNEdge>
215 <bpmndi:BPMNShape id="_BPMNShape_SubProcess_25" bpmnElement="bpmnExceptionHandlingSubProcess" isExpanded="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700216 <dc:Bounds x="152" y="468" width="325" height="169" />
xg353yb6b7bef2017-04-11 13:30:42 +0200217 </bpmndi:BPMNShape>
218 <bpmndi:BPMNShape id="_BPMNShape_StartEvent_70" bpmnElement="StartEvent_2">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700219 <dc:Bounds x="176" y="535" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200220 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700221 <dc:Bounds x="194" y="576" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200222 </bpmndi:BPMNLabel>
223 </bpmndi:BPMNShape>
224 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_224" bpmnElement="EndEvent_2">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700225 <dc:Bounds x="416" y="535" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200226 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700227 <dc:Bounds x="434" y="576" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200228 </bpmndi:BPMNLabel>
229 </bpmndi:BPMNShape>
230 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_292" bpmnElement="processBPMNException">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700231 <dc:Bounds x="265" y="513" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200232 </bpmndi:BPMNShape>
233 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_9" bpmnElement="SequenceFlow_7" sourceElement="_BPMNShape_StartEvent_70" targetElement="_BPMNShape_ScriptTask_292">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700234 <di:waypoint xsi:type="dc:Point" x="212" y="553" />
235 <di:waypoint xsi:type="dc:Point" x="265" y="553" />
xg353yb6b7bef2017-04-11 13:30:42 +0200236 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700237 <dc:Bounds x="233" y="553" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200238 </bpmndi:BPMNLabel>
239 </bpmndi:BPMNEdge>
240 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_8" sourceElement="_BPMNShape_ScriptTask_292" targetElement="_BPMNShape_EndEvent_224">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700241 <di:waypoint xsi:type="dc:Point" x="365" y="553" />
242 <di:waypoint xsi:type="dc:Point" x="416" y="553" />
xg353yb6b7bef2017-04-11 13:30:42 +0200243 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700244 <dc:Bounds x="385" y="553" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200245 </bpmndi:BPMNLabel>
246 </bpmndi:BPMNEdge>
247 <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_301" bpmnElement="obtainServiceUrlByName">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700248 <dc:Bounds x="528" y="59" width="100" height="80" />
xg353yb6b7bef2017-04-11 13:30:42 +0200249 </bpmndi:BPMNShape>
250 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_233" bpmnElement="obtain" isMarkerVisible="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700251 <dc:Bounds x="446" y="145" width="50" height="50" />
xg353yb6b7bef2017-04-11 13:30:42 +0200252 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700253 <dc:Bounds x="501" y="164" width="53" height="12" />
xg353yb6b7bef2017-04-11 13:30:42 +0200254 </bpmndi:BPMNLabel>
255 </bpmndi:BPMNShape>
256 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_234" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700257 <dc:Bounds x="646" y="145" width="50" height="50" />
xg353yb6b7bef2017-04-11 13:30:42 +0200258 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700259 <dc:Bounds x="671" y="200" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200260 </bpmndi:BPMNLabel>
261 </bpmndi:BPMNShape>
262 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="obtainById" sourceElement="_BPMNShape_ExclusiveGateway_233" targetElement="_BPMNShape_ScriptTask_289">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700263 <di:waypoint xsi:type="dc:Point" x="471" y="195" />
264 <di:waypoint xsi:type="dc:Point" x="471" y="236" />
265 <di:waypoint xsi:type="dc:Point" x="528" y="237" />
xg353yb6b7bef2017-04-11 13:30:42 +0200266 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700267 <dc:Bounds x="476" y="207" width="16" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200268 </bpmndi:BPMNLabel>
269 </bpmndi:BPMNEdge>
270 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="obtainByName" sourceElement="_BPMNShape_ExclusiveGateway_233" targetElement="_BPMNShape_ScriptTask_301">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700271 <di:waypoint xsi:type="dc:Point" x="471" y="145" />
272 <di:waypoint xsi:type="dc:Point" x="471" y="99" />
273 <di:waypoint xsi:type="dc:Point" x="528" y="99" />
xg353yb6b7bef2017-04-11 13:30:42 +0200274 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700275 <dc:Bounds x="471" y="115" width="40" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200276 </bpmndi:BPMNLabel>
277 </bpmndi:BPMNEdge>
278 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_13" sourceElement="_BPMNShape_ScriptTask_301" targetElement="_BPMNShape_ExclusiveGateway_234">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700279 <di:waypoint xsi:type="dc:Point" x="628" y="99" />
280 <di:waypoint xsi:type="dc:Point" x="671" y="99" />
281 <di:waypoint xsi:type="dc:Point" x="671" y="145" />
xg353yb6b7bef2017-04-11 13:30:42 +0200282 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700283 <dc:Bounds x="665" y="99" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200284 </bpmndi:BPMNLabel>
285 </bpmndi:BPMNEdge>
286 <bpmndi:BPMNShape id="_BPMNShape_ExclusiveGateway_235" bpmnElement="serviceFoundCheck" isMarkerVisible="true">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700287 <dc:Bounds x="738" y="145" width="50" height="50" />
xg353yb6b7bef2017-04-11 13:30:42 +0200288 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700289 <dc:Bounds x="735" y="125" width="59" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200290 </bpmndi:BPMNLabel>
291 </bpmndi:BPMNShape>
292 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_14" sourceElement="_BPMNShape_ExclusiveGateway_234" targetElement="_BPMNShape_ExclusiveGateway_235">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700293 <di:waypoint xsi:type="dc:Point" x="696" y="170" />
294 <di:waypoint xsi:type="dc:Point" x="738" y="170" />
xg353yb6b7bef2017-04-11 13:30:42 +0200295 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700296 <dc:Bounds x="704" y="170" width="6" height="6" />
xg353yb6b7bef2017-04-11 13:30:42 +0200297 </bpmndi:BPMNLabel>
298 </bpmndi:BPMNEdge>
299 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="foundYes" sourceElement="_BPMNShape_ExclusiveGateway_235" targetElement="_BPMNShape_ExclusiveGateway_228">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700300 <di:waypoint xsi:type="dc:Point" x="763" y="195" />
301 <di:waypoint xsi:type="dc:Point" x="763" y="256" />
xg353yb6b7bef2017-04-11 13:30:42 +0200302 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700303 <dc:Bounds x="762" y="205" width="29" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200304 </bpmndi:BPMNLabel>
305 </bpmndi:BPMNEdge>
306 <bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="notFound" sourceElement="_BPMNShape_ExclusiveGateway_235" targetElement="_BPMNShape_EndEvent_229">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700307 <di:waypoint xsi:type="dc:Point" x="788" y="170" />
308 <di:waypoint xsi:type="dc:Point" x="877" y="171" />
xg353yb6b7bef2017-04-11 13:30:42 +0200309 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700310 <dc:Bounds x="798" y="170" width="22" height="22" />
xg353yb6b7bef2017-04-11 13:30:42 +0200311 </bpmndi:BPMNLabel>
312 </bpmndi:BPMNEdge>
313 <bpmndi:BPMNShape id="_BPMNShape_EndEvent_229" bpmnElement="EndEvent_3">
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700314 <dc:Bounds x="877" y="153" width="36" height="36" />
xg353yb6b7bef2017-04-11 13:30:42 +0200315 <bpmndi:BPMNLabel>
Determe, Sebastien (sd378r)b1e57342017-05-09 03:55:30 -0700316 <dc:Bounds x="895" y="194" width="0" height="0" />
xg353yb6b7bef2017-04-11 13:30:42 +0200317 </bpmndi:BPMNLabel>
318 </bpmndi:BPMNShape>
319 </bpmndi:BPMNPlane>
320 </bpmndi:BPMNDiagram>
ChrisC025301d2017-01-31 11:40:03 +0100321</bpmn2:definitions>