Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 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:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="_MagIIMOUEeW8asg-vCEgWQ" targetNamespace="http://camunda.org/schema/1.0/bpmn" exporter="Camunda Modeler" exporterVersion="1.10.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd"> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 3 | <bpmn2:process id="DoCreateE2EServiceInstanceV3" name="DoCreateE2EServiceInstanceV3" isExecutable="true"> |
| 4 | <bpmn2:startEvent id="createSI_startEvent" name="Start Flow"> |
| 5 | <bpmn2:outgoing>SequenceFlow_1qiiycn</bpmn2:outgoing> |
| 6 | </bpmn2:startEvent> |
| 7 | <bpmn2:scriptTask id="preProcessRequest_ScriptTask" name="PreProcess Incoming Request" scriptFormat="groovy"> |
| 8 | <bpmn2:incoming>SequenceFlow_1qiiycn</bpmn2:incoming> |
| 9 | <bpmn2:outgoing>SequenceFlow_0w9t6tc</bpmn2:outgoing> |
| 10 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 11 | def dcsi = new DoCreateE2EServiceInstance() |
| 12 | dcsi.preProcessRequest(execution) |
| 13 | ]]></bpmn2:script> |
| 14 | </bpmn2:scriptTask> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 15 | <bpmn2:subProcess id="SubProcess_06d8lk8" name="Sub-process for Application Errors" triggeredByEvent="true"> |
| 16 | <bpmn2:startEvent id="StartEvent_0yljq9y"> |
| 17 | <bpmn2:outgoing>SequenceFlow_0tgrn11</bpmn2:outgoing> |
| 18 | <bpmn2:errorEventDefinition /> |
| 19 | </bpmn2:startEvent> |
| 20 | <bpmn2:endEvent id="EndEvent_117lkk3"> |
| 21 | <bpmn2:incoming>SequenceFlow_1xzgv5k</bpmn2:incoming> |
| 22 | </bpmn2:endEvent> |
| 23 | <bpmn2:callActivity id="CallActivity_1srx6p6" name="Call DoCreateE2EServiceInstanceRollback" calledElement="DoCreateE2EServiceInstanceRollback"> |
| 24 | <bpmn2:extensionElements> |
| 25 | <camunda:in source="msoRequestId" target="mso-request-id" /> |
| 26 | <camunda:in source="rollbackData" target="rollbackData" /> |
| 27 | <camunda:out source="rolledBack" target="rolledBack" /> |
| 28 | <camunda:in source="disableRollback" target="disableRollback" /> |
| 29 | <camunda:out source="rollbackError" target="rollbackErrror" /> |
| 30 | </bpmn2:extensionElements> |
| 31 | <bpmn2:incoming>SequenceFlow_1lqktwf</bpmn2:incoming> |
| 32 | <bpmn2:outgoing>SequenceFlow_0eumzpf</bpmn2:outgoing> |
| 33 | </bpmn2:callActivity> |
| 34 | <bpmn2:sequenceFlow id="SequenceFlow_0eumzpf" sourceRef="CallActivity_1srx6p6" targetRef="ScriptTask_1p0vyip" /> |
| 35 | <bpmn2:sequenceFlow id="SequenceFlow_0tgrn11" sourceRef="StartEvent_0yljq9y" targetRef="ScriptTask_0ocetux" /> |
| 36 | <bpmn2:scriptTask id="ScriptTask_0ocetux" name="Pre Process Rollback" scriptFormat="groovy"> |
| 37 | <bpmn2:incoming>SequenceFlow_0tgrn11</bpmn2:incoming> |
| 38 | <bpmn2:outgoing>SequenceFlow_1lqktwf</bpmn2:outgoing> |
| 39 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 40 | def dcsi = new DoCreateE2EServiceInstance() |
| 41 | dcsi.preProcessRollback(execution) |
| 42 | ]]></bpmn2:script> |
| 43 | </bpmn2:scriptTask> |
| 44 | <bpmn2:sequenceFlow id="SequenceFlow_1lqktwf" sourceRef="ScriptTask_0ocetux" targetRef="CallActivity_1srx6p6" /> |
| 45 | <bpmn2:scriptTask id="ScriptTask_1p0vyip" name="Post Process Rollback" scriptFormat="groovy"> |
| 46 | <bpmn2:incoming>SequenceFlow_0eumzpf</bpmn2:incoming> |
| 47 | <bpmn2:outgoing>SequenceFlow_1xzgv5k</bpmn2:outgoing> |
| 48 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 49 | def dcsi = new DoCreateE2EServiceInstance() |
| 50 | dcsi.postProcessRollback(execution) |
| 51 | ]]></bpmn2:script> |
| 52 | </bpmn2:scriptTask> |
| 53 | <bpmn2:sequenceFlow id="SequenceFlow_1xzgv5k" sourceRef="ScriptTask_1p0vyip" targetRef="EndEvent_117lkk3" /> |
| 54 | </bpmn2:subProcess> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 55 | <bpmn2:scriptTask id="ScriptTask_0q37vn9" name=" AAI Create (srv instance) " scriptFormat="groovy"> |
| 56 | <bpmn2:incoming>SequenceFlow_012h7yx</bpmn2:incoming> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 57 | <bpmn2:outgoing>SequenceFlow_1tkgqu3</bpmn2:outgoing> |
| 58 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 59 | def ddsi = new DoCreateE2EServiceInstance() |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 60 | ddsi.createServiceInstance(execution)]]></bpmn2:script> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 61 | </bpmn2:scriptTask> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 62 | <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_0bq4fxs" name="Go to Decompose_Service"> |
| 63 | <bpmn2:incoming>SequenceFlow_0w9t6tc</bpmn2:incoming> |
| 64 | <bpmn2:linkEventDefinition name="Decompose_Service" /> |
| 65 | </bpmn2:intermediateThrowEvent> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 66 | <bpmn2:scriptTask id="ScriptTask_1o01d7d" name="PostProcess Decompose Service " scriptFormat="groovy"> |
| 67 | <bpmn2:incoming>SequenceFlow_0xjwb45</bpmn2:incoming> |
| 68 | <bpmn2:outgoing>SequenceFlow_012h7yx</bpmn2:outgoing> |
| 69 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 70 | def dcsi= new DoCreateE2EServiceInstance() |
| 71 | dcsi.processDecomposition(execution)]]></bpmn2:script> |
| 72 | </bpmn2:scriptTask> |
| 73 | <bpmn2:callActivity id="CallActivity_0biblpc" name="Call Decompose Service" calledElement="DecomposeService"> |
| 74 | <bpmn2:extensionElements> |
| 75 | <camunda:in source="msoRequestId" target="msoRequestId" /> |
| 76 | <camunda:in source="serviceInstanceId" target="serviceInstanceId" /> |
| 77 | <camunda:in source="serviceModelInfo" target="serviceModelInfo" /> |
| 78 | <camunda:in source="isDebugLogEnabled" target="isDebugLogEnabled" /> |
| 79 | <camunda:out source="serviceDecomposition" target="serviceDecomposition" /> |
| 80 | <camunda:out source="WorkflowException" target="WorkflowException" /> |
| 81 | </bpmn2:extensionElements> |
| 82 | <bpmn2:incoming>SequenceFlow_0qxzgvq</bpmn2:incoming> |
| 83 | <bpmn2:outgoing>SequenceFlow_0xjwb45</bpmn2:outgoing> |
| 84 | </bpmn2:callActivity> |
| 85 | <bpmn2:scriptTask id="ScriptTask_1cllqk3" name="Prepare Decompose Service " scriptFormat="groovy"> |
| 86 | <bpmn2:incoming>SequenceFlow_166w91p</bpmn2:incoming> |
| 87 | <bpmn2:outgoing>SequenceFlow_0qxzgvq</bpmn2:outgoing> |
| 88 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 89 | def dcsi= new DoCreateE2EServiceInstance() |
| 90 | dcsi.prepareDecomposeService(execution)]]></bpmn2:script> |
| 91 | </bpmn2:scriptTask> |
| 92 | <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_0tv85pg" name="Decompose_Service"> |
| 93 | <bpmn2:outgoing>SequenceFlow_166w91p</bpmn2:outgoing> |
| 94 | <bpmn2:linkEventDefinition name="Decompose_Service" /> |
| 95 | </bpmn2:intermediateCatchEvent> |
| 96 | <bpmn2:sequenceFlow id="SequenceFlow_0xjwb45" sourceRef="CallActivity_0biblpc" targetRef="ScriptTask_1o01d7d" /> |
| 97 | <bpmn2:sequenceFlow id="SequenceFlow_0qxzgvq" sourceRef="ScriptTask_1cllqk3" targetRef="CallActivity_0biblpc" /> |
| 98 | <bpmn2:sequenceFlow id="SequenceFlow_1qiiycn" sourceRef="createSI_startEvent" targetRef="preProcessRequest_ScriptTask" /> |
| 99 | <bpmn2:sequenceFlow id="SequenceFlow_166w91p" sourceRef="IntermediateCatchEvent_0tv85pg" targetRef="ScriptTask_1cllqk3" /> |
| 100 | <bpmn2:intermediateThrowEvent id="IntermediateThrowEvent_16okck2" name="GoTo StartPrepareResource"> |
Yulian Han | e992deb | 2018-09-20 11:30:15 +0800 | [diff] [blame] | 101 | <bpmn2:incoming>SequenceFlow_1tkgqu3</bpmn2:incoming> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 102 | <bpmn2:linkEventDefinition name="StartPrepareResource" /> |
| 103 | </bpmn2:intermediateThrowEvent> |
Yulian Han | e992deb | 2018-09-20 11:30:15 +0800 | [diff] [blame] | 104 | <bpmn2:sequenceFlow id="SequenceFlow_1tkgqu3" sourceRef="ScriptTask_0q37vn9" targetRef="IntermediateThrowEvent_16okck2" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 105 | <bpmn2:sequenceFlow id="SequenceFlow_0w9t6tc" sourceRef="preProcessRequest_ScriptTask" targetRef="IntermediateThrowEvent_0bq4fxs" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 106 | <bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_05dus9b" name="StartPrepareResource"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 107 | <bpmn2:outgoing>SequenceFlow_0yuzaen</bpmn2:outgoing> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 108 | <bpmn2:linkEventDefinition name="StartPrepareResource" /> |
| 109 | </bpmn2:intermediateCatchEvent> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 110 | <bpmn2:sequenceFlow id="SequenceFlow_012h7yx" sourceRef="ScriptTask_1o01d7d" targetRef="ScriptTask_0q37vn9" /> |
| 111 | <bpmn2:scriptTask id="ScriptTask_1rzf8a1" name="Prepare Resource Oper Status" scriptFormat="groovy"> |
| 112 | <bpmn2:incoming>SequenceFlow_1y9rkfr</bpmn2:incoming> |
| 113 | <bpmn2:outgoing>SequenceFlow_0n7nbx3</bpmn2:outgoing> |
| 114 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 115 | def ddsi = new DoCreateE2EServiceInstance() |
| 116 | ddsi.preInitResourcesOperStatus(execution)]]></bpmn2:script> |
| 117 | </bpmn2:scriptTask> |
| 118 | <bpmn2:serviceTask id="ServiceTask_1asgesv" name="Init Resource Oper Status"> |
| 119 | <bpmn2:extensionElements> |
| 120 | <camunda:connector> |
| 121 | <camunda:inputOutput> |
| 122 | <camunda:inputParameter name="url">${CVFMI_dbAdapterEndpoint}</camunda:inputParameter> |
| 123 | <camunda:inputParameter name="headers"> |
| 124 | <camunda:map> |
| 125 | <camunda:entry key="content-type">application/soap+xml</camunda:entry> |
| 126 | <camunda:entry key="Authorization">Basic QlBFTENsaWVudDpwYXNzd29yZDEk</camunda:entry> |
| 127 | </camunda:map> |
| 128 | </camunda:inputParameter> |
| 129 | <camunda:inputParameter name="payload">${CVFMI_initResOperStatusRequest}</camunda:inputParameter> |
| 130 | <camunda:inputParameter name="method">POST</camunda:inputParameter> |
| 131 | <camunda:outputParameter name="CVFMI_dbResponseCode">${statusCode}</camunda:outputParameter> |
| 132 | <camunda:outputParameter name="CVFMI_dbResponse">${response}</camunda:outputParameter> |
| 133 | </camunda:inputOutput> |
| 134 | <camunda:connectorId>http-connector</camunda:connectorId> |
| 135 | </camunda:connector> |
| 136 | </bpmn2:extensionElements> |
| 137 | <bpmn2:incoming>SequenceFlow_0n7nbx3</bpmn2:incoming> |
| 138 | <bpmn2:outgoing>SequenceFlow_0ckto7v</bpmn2:outgoing> |
| 139 | </bpmn2:serviceTask> |
| 140 | <bpmn2:callActivity id="CallActivity_1gae03e" name="Call DoCreateResources" calledElement="DoCreateResourcesV3"> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 141 | <bpmn2:extensionElements> |
| 142 | <camunda:in source="nsServiceName" target="nsServiceName" /> |
| 143 | <camunda:in source="nsServiceDescription" target="nsServiceDescription" /> |
| 144 | <camunda:in source="globalSubscriberId" target="globalSubscriberId" /> |
| 145 | <camunda:in source="serviceType" target="serviceType" /> |
| 146 | <camunda:in source="serviceInstanceId" target="serviceInstanceId" /> |
| 147 | <camunda:in source="operationId" target="operationId" /> |
| 148 | <camunda:in source="resourceType" target="resourceType" /> |
| 149 | <camunda:in source="resourceUUID" target="resourceUUID" /> |
| 150 | <camunda:in source="resourceParameters" target="resourceParameters" /> |
| 151 | <camunda:in source="operationType" target="operationType" /> |
| 152 | <camunda:in source="addResourceList" target="addResourceList" /> |
| 153 | <camunda:in source="serviceInstanceName" target="serviceInstanceName" /> |
| 154 | <camunda:in source="serviceDecomposition" target="serviceDecomposition" /> |
| 155 | <camunda:in source="uuiRequest" target="uuiRequest" /> |
| 156 | <camunda:in source="msoRequestId" target="msoRequestId" /> |
| 157 | </bpmn2:extensionElements> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 158 | <bpmn2:incoming>SequenceFlow_0b1dsaj</bpmn2:incoming> |
| 159 | <bpmn2:outgoing>SequenceFlow_0sphcy5</bpmn2:outgoing> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 160 | </bpmn2:callActivity> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 161 | <bpmn2:scriptTask id="ScriptTask_0ns08tn" name="PreProcess for Add Resources" scriptFormat="groovy"> |
| 162 | <bpmn2:incoming>SequenceFlow_022onug</bpmn2:incoming> |
| 163 | <bpmn2:outgoing>SequenceFlow_0b1dsaj</bpmn2:outgoing> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 164 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 165 | def csi = new DoCreateE2EServiceInstance() |
| 166 | csi.preProcessForAddResource(execution)]]></bpmn2:script> |
| 167 | </bpmn2:scriptTask> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 168 | <bpmn2:scriptTask id="ScriptTask_19t13rd" name="PostProcess for Add Resource" scriptFormat="groovy"> |
| 169 | <bpmn2:incoming>SequenceFlow_0sphcy5</bpmn2:incoming> |
| 170 | <bpmn2:outgoing>SequenceFlow_18gnns6</bpmn2:outgoing> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 171 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 172 | def csi = new DoCreateE2EServiceInstance() |
| 173 | csi.postProcessForAddResource(execution)]]></bpmn2:script> |
| 174 | </bpmn2:scriptTask> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 175 | <bpmn2:endEvent id="EndEvent_1x4kvfh"> |
| 176 | <bpmn2:incoming>SequenceFlow_18gnns6</bpmn2:incoming> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 177 | </bpmn2:endEvent> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 178 | <bpmn2:scriptTask id="ScriptTask_0jxdler" name="Process Site Location" scriptFormat="groovy"> |
| 179 | <bpmn2:incoming>SequenceFlow_0yuzaen</bpmn2:incoming> |
| 180 | <bpmn2:outgoing>SequenceFlow_1y9rkfr</bpmn2:outgoing> |
Yulian Han | 0d5e1ab | 2018-08-21 16:33:03 +0800 | [diff] [blame] | 181 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 182 | def dcsi= new DoCreateE2EServiceInstance() |
| 183 | dcsi.doProcessSiteLocation(execution)]]></bpmn2:script> |
| 184 | </bpmn2:scriptTask> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 185 | <bpmn2:scriptTask id="ScriptTask_0ts3c3b" name="Process Link TP Resource Allocation" scriptFormat="groovy"> |
| 186 | <bpmn2:incoming>SequenceFlow_0ckto7v</bpmn2:incoming> |
| 187 | <bpmn2:outgoing>SequenceFlow_022onug</bpmn2:outgoing> |
Yulian Han | 0d5e1ab | 2018-08-21 16:33:03 +0800 | [diff] [blame] | 188 | <bpmn2:script><![CDATA[import org.onap.so.bpmn.infrastructure.scripts.* |
| 189 | def dcsi= new DoCreateE2EServiceInstance() |
| 190 | dcsi.doTPResourcesAllocation(execution)]]></bpmn2:script> |
| 191 | </bpmn2:scriptTask> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 192 | <bpmn2:sequenceFlow id="SequenceFlow_1y9rkfr" sourceRef="ScriptTask_0jxdler" targetRef="ScriptTask_1rzf8a1" /> |
| 193 | <bpmn2:sequenceFlow id="SequenceFlow_0n7nbx3" sourceRef="ScriptTask_1rzf8a1" targetRef="ServiceTask_1asgesv" /> |
| 194 | <bpmn2:sequenceFlow id="SequenceFlow_0ckto7v" sourceRef="ServiceTask_1asgesv" targetRef="ScriptTask_0ts3c3b" /> |
| 195 | <bpmn2:sequenceFlow id="SequenceFlow_0b1dsaj" sourceRef="ScriptTask_0ns08tn" targetRef="CallActivity_1gae03e" /> |
| 196 | <bpmn2:sequenceFlow id="SequenceFlow_0sphcy5" sourceRef="CallActivity_1gae03e" targetRef="ScriptTask_19t13rd" /> |
| 197 | <bpmn2:sequenceFlow id="SequenceFlow_022onug" sourceRef="ScriptTask_0ts3c3b" targetRef="ScriptTask_0ns08tn" /> |
| 198 | <bpmn2:sequenceFlow id="SequenceFlow_18gnns6" sourceRef="ScriptTask_19t13rd" targetRef="EndEvent_1x4kvfh" /> |
| 199 | <bpmn2:sequenceFlow id="SequenceFlow_0yuzaen" sourceRef="IntermediateCatchEvent_05dus9b" targetRef="ScriptTask_0jxdler" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 200 | </bpmn2:process> |
| 201 | <bpmn2:error id="Error_2" name="MSOWorkflowException" errorCode="MSOWorkflowException" /> |
| 202 | <bpmn2:error id="Error_1" name="java.lang.Exception" errorCode="java.lang.Exception" /> |
| 203 | <bpmndi:BPMNDiagram id="BPMNDiagram_1"> |
| 204 | <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="DoCreateE2EServiceInstanceV3"> |
| 205 | <bpmndi:BPMNShape id="_BPMNShape_StartEvent_47" bpmnElement="createSI_startEvent"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 206 | <dc:Bounds x="9" y="-22" width="36" height="36" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 207 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 208 | <dc:Bounds x="3" y="19" width="50" height="12" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 209 | </bpmndi:BPMNLabel> |
| 210 | </bpmndi:BPMNShape> |
| 211 | <bpmndi:BPMNShape id="_BPMNShape_ScriptTask_61" bpmnElement="preProcessRequest_ScriptTask"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 212 | <dc:Bounds x="117" y="-44" width="100" height="80" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 213 | </bpmndi:BPMNShape> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 214 | <bpmndi:BPMNShape id="SubProcess_06d8lk8_di" bpmnElement="SubProcess_06d8lk8" isExpanded="true"> |
| 215 | <dc:Bounds x="15" y="865" width="783" height="195" /> |
| 216 | </bpmndi:BPMNShape> |
| 217 | <bpmndi:BPMNShape id="StartEvent_0yljq9y_di" bpmnElement="StartEvent_0yljq9y"> |
| 218 | <dc:Bounds x="111" y="942" width="36" height="36" /> |
| 219 | <bpmndi:BPMNLabel> |
| 220 | <dc:Bounds x="84" y="983" width="90" height="0" /> |
| 221 | </bpmndi:BPMNLabel> |
| 222 | </bpmndi:BPMNShape> |
| 223 | <bpmndi:BPMNShape id="EndEvent_117lkk3_di" bpmnElement="EndEvent_117lkk3"> |
| 224 | <dc:Bounds x="744" y="942" width="36" height="36" /> |
| 225 | <bpmndi:BPMNLabel> |
| 226 | <dc:Bounds x="717" y="983" width="90" height="0" /> |
| 227 | </bpmndi:BPMNLabel> |
| 228 | </bpmndi:BPMNShape> |
| 229 | <bpmndi:BPMNShape id="CallActivity_1srx6p6_di" bpmnElement="CallActivity_1srx6p6"> |
| 230 | <dc:Bounds x="409" y="920" width="100" height="80" /> |
| 231 | </bpmndi:BPMNShape> |
| 232 | <bpmndi:BPMNEdge id="SequenceFlow_0eumzpf_di" bpmnElement="SequenceFlow_0eumzpf"> |
| 233 | <di:waypoint xsi:type="dc:Point" x="509" y="960" /> |
| 234 | <di:waypoint xsi:type="dc:Point" x="577" y="960" /> |
| 235 | <bpmndi:BPMNLabel> |
| 236 | <dc:Bounds x="498" y="945" width="90" height="0" /> |
| 237 | </bpmndi:BPMNLabel> |
| 238 | </bpmndi:BPMNEdge> |
| 239 | <bpmndi:BPMNEdge id="SequenceFlow_0tgrn11_di" bpmnElement="SequenceFlow_0tgrn11"> |
| 240 | <di:waypoint xsi:type="dc:Point" x="147" y="960" /> |
| 241 | <di:waypoint xsi:type="dc:Point" x="246" y="960" /> |
| 242 | <bpmndi:BPMNLabel> |
| 243 | <dc:Bounds x="152" y="945" width="90" height="0" /> |
| 244 | </bpmndi:BPMNLabel> |
| 245 | </bpmndi:BPMNEdge> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 246 | <bpmndi:BPMNShape id="ScriptTask_0q37vn9_di" bpmnElement="ScriptTask_0q37vn9"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 247 | <dc:Bounds x="1012" y="106" width="100" height="80" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 248 | </bpmndi:BPMNShape> |
| 249 | <bpmndi:BPMNShape id="ScriptTask_0ocetux_di" bpmnElement="ScriptTask_0ocetux"> |
| 250 | <dc:Bounds x="246" y="920" width="100" height="80" /> |
| 251 | </bpmndi:BPMNShape> |
| 252 | <bpmndi:BPMNEdge id="SequenceFlow_1lqktwf_di" bpmnElement="SequenceFlow_1lqktwf"> |
| 253 | <di:waypoint xsi:type="dc:Point" x="346" y="960" /> |
| 254 | <di:waypoint xsi:type="dc:Point" x="409" y="960" /> |
| 255 | <bpmndi:BPMNLabel> |
| 256 | <dc:Bounds x="333" y="945" width="90" height="0" /> |
| 257 | </bpmndi:BPMNLabel> |
| 258 | </bpmndi:BPMNEdge> |
| 259 | <bpmndi:BPMNShape id="ScriptTask_1p0vyip_di" bpmnElement="ScriptTask_1p0vyip"> |
| 260 | <dc:Bounds x="577" y="920" width="100" height="80" /> |
| 261 | </bpmndi:BPMNShape> |
| 262 | <bpmndi:BPMNEdge id="SequenceFlow_1xzgv5k_di" bpmnElement="SequenceFlow_1xzgv5k"> |
| 263 | <di:waypoint xsi:type="dc:Point" x="677" y="960" /> |
| 264 | <di:waypoint xsi:type="dc:Point" x="709" y="960" /> |
| 265 | <di:waypoint xsi:type="dc:Point" x="709" y="960" /> |
| 266 | <di:waypoint xsi:type="dc:Point" x="744" y="960" /> |
| 267 | <bpmndi:BPMNLabel> |
| 268 | <dc:Bounds x="679" y="960" width="90" height="0" /> |
| 269 | </bpmndi:BPMNLabel> |
| 270 | </bpmndi:BPMNEdge> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 271 | <bpmndi:BPMNShape id="IntermediateThrowEvent_11saqvj_di" bpmnElement="IntermediateThrowEvent_0bq4fxs"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 272 | <dc:Bounds x="1306" y="-22" width="36" height="36" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 273 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 274 | <dc:Bounds x="1281" y="18" width="88" height="36" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 275 | </bpmndi:BPMNLabel> |
| 276 | </bpmndi:BPMNShape> |
| 277 | <bpmndi:BPMNShape id="ScriptTask_1o01d7d_di" bpmnElement="ScriptTask_1o01d7d"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 278 | <dc:Bounds x="704" y="106" width="100" height="80" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 279 | </bpmndi:BPMNShape> |
| 280 | <bpmndi:BPMNShape id="CallActivity_0biblpc_di" bpmnElement="CallActivity_0biblpc"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 281 | <dc:Bounds x="469" y="106" width="100" height="80" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 282 | </bpmndi:BPMNShape> |
| 283 | <bpmndi:BPMNShape id="ScriptTask_1cllqk3_di" bpmnElement="ScriptTask_1cllqk3"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 284 | <dc:Bounds x="187" y="106" width="100" height="80" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 285 | </bpmndi:BPMNShape> |
| 286 | <bpmndi:BPMNShape id="IntermediateCatchEvent_0tv85pg_di" bpmnElement="IntermediateCatchEvent_0tv85pg"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 287 | <dc:Bounds x="17" y="128" width="36" height="36" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 288 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 289 | <dc:Bounds x="-7" y="164" width="88" height="24" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 290 | </bpmndi:BPMNLabel> |
| 291 | </bpmndi:BPMNShape> |
| 292 | <bpmndi:BPMNEdge id="SequenceFlow_0xjwb45_di" bpmnElement="SequenceFlow_0xjwb45"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 293 | <di:waypoint xsi:type="dc:Point" x="569" y="146" /> |
| 294 | <di:waypoint xsi:type="dc:Point" x="704" y="146" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 295 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 296 | <dc:Bounds x="592" y="125" width="90" height="12" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 297 | </bpmndi:BPMNLabel> |
| 298 | </bpmndi:BPMNEdge> |
| 299 | <bpmndi:BPMNEdge id="SequenceFlow_0qxzgvq_di" bpmnElement="SequenceFlow_0qxzgvq"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 300 | <di:waypoint xsi:type="dc:Point" x="287" y="146" /> |
| 301 | <di:waypoint xsi:type="dc:Point" x="469" y="146" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 302 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 303 | <dc:Bounds x="333" y="125" width="90" height="12" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 304 | </bpmndi:BPMNLabel> |
| 305 | </bpmndi:BPMNEdge> |
| 306 | <bpmndi:BPMNEdge id="SequenceFlow_1qiiycn_di" bpmnElement="SequenceFlow_1qiiycn"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 307 | <di:waypoint xsi:type="dc:Point" x="45" y="-4" /> |
| 308 | <di:waypoint xsi:type="dc:Point" x="117" y="-4" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 309 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 310 | <dc:Bounds x="36" y="-25" width="90" height="12" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 311 | </bpmndi:BPMNLabel> |
| 312 | </bpmndi:BPMNEdge> |
| 313 | <bpmndi:BPMNEdge id="SequenceFlow_166w91p_di" bpmnElement="SequenceFlow_166w91p"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 314 | <di:waypoint xsi:type="dc:Point" x="53" y="146" /> |
| 315 | <di:waypoint xsi:type="dc:Point" x="187" y="146" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 316 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 317 | <dc:Bounds x="75" y="125" width="90" height="12" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 318 | </bpmndi:BPMNLabel> |
| 319 | </bpmndi:BPMNEdge> |
| 320 | <bpmndi:BPMNShape id="IntermediateThrowEvent_16okck2_di" bpmnElement="IntermediateThrowEvent_16okck2"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 321 | <dc:Bounds x="1306" y="128" width="36" height="36" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 322 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 323 | <dc:Bounds x="1285" y="169" width="82" height="36" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 324 | </bpmndi:BPMNLabel> |
| 325 | </bpmndi:BPMNShape> |
| 326 | <bpmndi:BPMNEdge id="SequenceFlow_1tkgqu3_di" bpmnElement="SequenceFlow_1tkgqu3"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 327 | <di:waypoint xsi:type="dc:Point" x="1112" y="146" /> |
| 328 | <di:waypoint xsi:type="dc:Point" x="1222" y="146" /> |
| 329 | <di:waypoint xsi:type="dc:Point" x="1222" y="146" /> |
| 330 | <di:waypoint xsi:type="dc:Point" x="1306" y="146" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 331 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 332 | <dc:Bounds x="1192" y="140" width="90" height="12" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 333 | </bpmndi:BPMNLabel> |
| 334 | </bpmndi:BPMNEdge> |
| 335 | <bpmndi:BPMNEdge id="SequenceFlow_0w9t6tc_di" bpmnElement="SequenceFlow_0w9t6tc"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 336 | <di:waypoint xsi:type="dc:Point" x="217" y="-4" /> |
| 337 | <di:waypoint xsi:type="dc:Point" x="762" y="-4" /> |
| 338 | <di:waypoint xsi:type="dc:Point" x="762" y="-4" /> |
| 339 | <di:waypoint xsi:type="dc:Point" x="1306" y="-4" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 340 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 341 | <dc:Bounds x="732" y="-10" width="90" height="12" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 342 | </bpmndi:BPMNLabel> |
| 343 | </bpmndi:BPMNEdge> |
| 344 | <bpmndi:BPMNShape id="IntermediateCatchEvent_05dus9b_di" bpmnElement="IntermediateCatchEvent_05dus9b"> |
| 345 | <dc:Bounds x="18" y="282" width="36" height="36" /> |
| 346 | <bpmndi:BPMNLabel> |
| 347 | <dc:Bounds x="-3" y="318" width="82" height="24" /> |
| 348 | </bpmndi:BPMNLabel> |
| 349 | </bpmndi:BPMNShape> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 350 | <bpmndi:BPMNEdge id="SequenceFlow_012h7yx_di" bpmnElement="SequenceFlow_012h7yx"> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 351 | <di:waypoint xsi:type="dc:Point" x="804" y="146" /> |
| 352 | <di:waypoint xsi:type="dc:Point" x="917" y="146" /> |
| 353 | <di:waypoint xsi:type="dc:Point" x="917" y="146" /> |
| 354 | <di:waypoint xsi:type="dc:Point" x="1012" y="146" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 355 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 356 | <dc:Bounds x="887" y="139" width="90" height="14" /> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 357 | </bpmndi:BPMNLabel> |
| 358 | </bpmndi:BPMNEdge> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 359 | <bpmndi:BPMNShape id="ScriptTask_1rzf8a1_di" bpmnElement="ScriptTask_1rzf8a1"> |
| 360 | <dc:Bounds x="262" y="260" width="100" height="80" /> |
Yulian Han | 0d5e1ab | 2018-08-21 16:33:03 +0800 | [diff] [blame] | 361 | </bpmndi:BPMNShape> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 362 | <bpmndi:BPMNShape id="ServiceTask_1asgesv_di" bpmnElement="ServiceTask_1asgesv"> |
| 363 | <dc:Bounds x="433" y="260" width="100" height="80" /> |
Yulian Han | 0d5e1ab | 2018-08-21 16:33:03 +0800 | [diff] [blame] | 364 | </bpmndi:BPMNShape> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 365 | <bpmndi:BPMNShape id="CallActivity_1gae03e_di" bpmnElement="CallActivity_1gae03e"> |
| 366 | <dc:Bounds x="957" y="260" width="100" height="80" /> |
| 367 | </bpmndi:BPMNShape> |
| 368 | <bpmndi:BPMNShape id="ScriptTask_0ns08tn_di" bpmnElement="ScriptTask_0ns08tn"> |
| 369 | <dc:Bounds x="785" y="260" width="100" height="80" /> |
| 370 | </bpmndi:BPMNShape> |
| 371 | <bpmndi:BPMNShape id="ScriptTask_19t13rd_di" bpmnElement="ScriptTask_19t13rd"> |
| 372 | <dc:Bounds x="1131" y="260" width="100" height="80" /> |
| 373 | </bpmndi:BPMNShape> |
| 374 | <bpmndi:BPMNShape id="EndEvent_1x4kvfh_di" bpmnElement="EndEvent_1x4kvfh"> |
| 375 | <dc:Bounds x="1301" y="282" width="36" height="36" /> |
Yulian Han | 0d5e1ab | 2018-08-21 16:33:03 +0800 | [diff] [blame] | 376 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 377 | <dc:Bounds x="1274" y="322" width="0" height="12" /> |
| 378 | </bpmndi:BPMNLabel> |
| 379 | </bpmndi:BPMNShape> |
| 380 | <bpmndi:BPMNShape id="ScriptTask_0jxdler_di" bpmnElement="ScriptTask_0jxdler"> |
| 381 | <dc:Bounds x="88" y="260" width="100" height="80" /> |
| 382 | </bpmndi:BPMNShape> |
| 383 | <bpmndi:BPMNShape id="ScriptTask_0ts3c3b_di" bpmnElement="ScriptTask_0ts3c3b"> |
| 384 | <dc:Bounds x="599" y="260" width="100" height="80" /> |
| 385 | </bpmndi:BPMNShape> |
| 386 | <bpmndi:BPMNEdge id="SequenceFlow_1y9rkfr_di" bpmnElement="SequenceFlow_1y9rkfr"> |
| 387 | <di:waypoint xsi:type="dc:Point" x="188" y="300" /> |
| 388 | <di:waypoint xsi:type="dc:Point" x="262" y="300" /> |
| 389 | <bpmndi:BPMNLabel> |
| 390 | <dc:Bounds x="180" y="279" width="0" height="12" /> |
Yulian Han | 0d5e1ab | 2018-08-21 16:33:03 +0800 | [diff] [blame] | 391 | </bpmndi:BPMNLabel> |
| 392 | </bpmndi:BPMNEdge> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 393 | <bpmndi:BPMNEdge id="SequenceFlow_0n7nbx3_di" bpmnElement="SequenceFlow_0n7nbx3"> |
| 394 | <di:waypoint xsi:type="dc:Point" x="362" y="300" /> |
| 395 | <di:waypoint xsi:type="dc:Point" x="433" y="300" /> |
Yulian Han | 0d5e1ab | 2018-08-21 16:33:03 +0800 | [diff] [blame] | 396 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 397 | <dc:Bounds x="353.5" y="279" width="0" height="12" /> |
Yulian Han | e992deb | 2018-09-20 11:30:15 +0800 | [diff] [blame] | 398 | </bpmndi:BPMNLabel> |
| 399 | </bpmndi:BPMNEdge> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 400 | <bpmndi:BPMNEdge id="SequenceFlow_0ckto7v_di" bpmnElement="SequenceFlow_0ckto7v"> |
| 401 | <di:waypoint xsi:type="dc:Point" x="533" y="300" /> |
| 402 | <di:waypoint xsi:type="dc:Point" x="599" y="300" /> |
Yulian Han | e992deb | 2018-09-20 11:30:15 +0800 | [diff] [blame] | 403 | <bpmndi:BPMNLabel> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 404 | <dc:Bounds x="521" y="279" width="0" height="12" /> |
| 405 | </bpmndi:BPMNLabel> |
| 406 | </bpmndi:BPMNEdge> |
| 407 | <bpmndi:BPMNEdge id="SequenceFlow_0b1dsaj_di" bpmnElement="SequenceFlow_0b1dsaj"> |
| 408 | <di:waypoint xsi:type="dc:Point" x="885" y="300" /> |
| 409 | <di:waypoint xsi:type="dc:Point" x="957" y="300" /> |
| 410 | <bpmndi:BPMNLabel> |
| 411 | <dc:Bounds x="876" y="279" width="0" height="12" /> |
| 412 | </bpmndi:BPMNLabel> |
| 413 | </bpmndi:BPMNEdge> |
| 414 | <bpmndi:BPMNEdge id="SequenceFlow_0sphcy5_di" bpmnElement="SequenceFlow_0sphcy5"> |
| 415 | <di:waypoint xsi:type="dc:Point" x="1057" y="300" /> |
| 416 | <di:waypoint xsi:type="dc:Point" x="1131" y="300" /> |
| 417 | <bpmndi:BPMNLabel> |
| 418 | <dc:Bounds x="1049" y="279" width="0" height="12" /> |
| 419 | </bpmndi:BPMNLabel> |
| 420 | </bpmndi:BPMNEdge> |
| 421 | <bpmndi:BPMNEdge id="SequenceFlow_022onug_di" bpmnElement="SequenceFlow_022onug"> |
| 422 | <di:waypoint xsi:type="dc:Point" x="699" y="300" /> |
| 423 | <di:waypoint xsi:type="dc:Point" x="785" y="300" /> |
| 424 | <bpmndi:BPMNLabel> |
| 425 | <dc:Bounds x="697" y="279" width="0" height="12" /> |
| 426 | </bpmndi:BPMNLabel> |
| 427 | </bpmndi:BPMNEdge> |
| 428 | <bpmndi:BPMNEdge id="SequenceFlow_18gnns6_di" bpmnElement="SequenceFlow_18gnns6"> |
| 429 | <di:waypoint xsi:type="dc:Point" x="1231" y="300" /> |
| 430 | <di:waypoint xsi:type="dc:Point" x="1301" y="300" /> |
| 431 | <bpmndi:BPMNLabel> |
| 432 | <dc:Bounds x="1221" y="279" width="0" height="12" /> |
| 433 | </bpmndi:BPMNLabel> |
| 434 | </bpmndi:BPMNEdge> |
| 435 | <bpmndi:BPMNEdge id="SequenceFlow_0yuzaen_di" bpmnElement="SequenceFlow_0yuzaen"> |
| 436 | <di:waypoint xsi:type="dc:Point" x="54" y="300" /> |
| 437 | <di:waypoint xsi:type="dc:Point" x="88" y="300" /> |
| 438 | <bpmndi:BPMNLabel> |
| 439 | <dc:Bounds x="71" y="279" width="0" height="12" /> |
Elaine_Han | 1bda611 | 2018-08-10 15:43:04 +0800 | [diff] [blame] | 440 | </bpmndi:BPMNLabel> |
| 441 | </bpmndi:BPMNEdge> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 442 | </bpmndi:BPMNPlane> |
| 443 | </bpmndi:BPMNDiagram> |
Benjamin, Max (mb388a) | 6ba0a22 | 2018-10-11 13:55:37 -0400 | [diff] [blame^] | 444 | </bpmn2:definitions> |