Commit 0db9933b authored by Tiemo Bang's avatar Tiemo Bang

Changed customerId to orderId for asyn

parent 867ab784
......@@ -75,6 +75,7 @@
<bpel:variable name="shipProductsRequest" messageType="ns:shipProductsInput"></bpel:variable>
<bpel:variable name="InventoryPLRequest" messageType="ns:checkAvailabilityAsyncInput"></bpel:variable>
<bpel:variable name="InventroyCallBackPLRequest" messageType="ns:onFinishCheckAvailabilityInput"></bpel:variable>
<bpel:variable name="cancelOrderRequest" messageType="ns:cancelOrderInput"></bpel:variable>
</bpel:variables>
<!-- ================================================================= -->
......@@ -143,18 +144,33 @@
<bpel:to part="storeOrderDetailsInput" variable="input"></bpel:to>
</bpel:copy>
<bpel:copy>
<bpel:from>
<![CDATA[bpel:doXslTransform("Dummy.xsl", $input.storeOrderDetailsInput/ns:orderId)]]>
<bpel:literal xml:space="preserve"><tns:storeOrderDetails xmlns:tns="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:orderId></tns:orderId>
<tns:customerId></tns:customerId>
<tns:products>
<tns:product>
<tns:productId>66968a93-4ec6-4fa2-bf2d-3b0f59e56738</tns:productId>
<tns:numberOfItems>2</tns:numberOfItems>
</tns:product>
<tns:product>
<tns:productId>3bae3778-8577-4b36-9572-a0b020931ba5</tns:productId>
<tns:numberOfItems>1</tns:numberOfItems>
</tns:product>
</tns:products>
<tns:shippingAddress>2nd Street 4242</tns:shippingAddress>
<tns:paymentDetails>
<tns:bankName>myBank</tns:bankName>
<tns:bankAddress>myBankAddress</tns:bankAddress>
<tns:accountNumber>myAccountNumber</tns:accountNumber>
<tns:accountHolderName>Mrs. X</tns:accountHolderName>
</tns:paymentDetails>
</tns:storeOrderDetails>
<!-- not available --></bpel:literal>
</bpel:from>
<bpel:to part="payload" variable="output">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0">
<![CDATA[tns:result]]>
</bpel:query>
</bpel:to>
<bpel:to part="storeOrderDetailsInput" variable="input"></bpel:to>
</bpel:copy>
</bpel:assign>
......@@ -184,8 +200,17 @@
<bpel:flow name="Flow"><bpel:sequence name="Sequence"><bpel:invoke name="storeOrderDetails" partnerLink="OrderPL" operation="storeOrderDetails" portType="ns:OrderPortType" outputVariable="storeOrderDetailsResponse" inputVariable="input"></bpel:invoke>
<bpel:assign validate="no" name="assignOrderID"><bpel:copy>
<bpel:invoke name="storeOrderDetails" partnerLink="OrderPL" operation="storeOrderDetails" portType="ns:OrderPortType" outputVariable="storeOrderDetailsResponse" inputVariable="input"></bpel:invoke>
<bpel:flow name="Flow"><bpel:sequence name="Sequence">
<bpel:assign validate="no" name="assignOrderID">
<bpel:copy>
<bpel:from><bpel:literal><tns:cancelOrder xmlns:tns="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:orderId>tns:orderId</tns:orderId>
</tns:cancelOrder>
</bpel:literal></bpel:from>
<bpel:to variable="cancelOrderRequest" part="cancelOrderInput"></bpel:to>
</bpel:copy>
<bpel:copy>
<bpel:from><bpel:literal><tns:shipProducts xmlns:tns="http://iaas.uni-stuttgart.de/labs/FlowSOG" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:orderId>tns:orderId</tns:orderId>
<tns:date>2001-01-01</tns:date>
......@@ -263,6 +288,14 @@
</bpel:to>
</bpel:copy>
<bpel:copy>
<bpel:from part="storeOrderDetailsOutput" variable="storeOrderDetailsResponse">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:from>
<bpel:to part="cancelOrderInput" variable="cancelOrderRequest">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:orderId]]></bpel:query>
</bpel:to>
</bpel:copy>
</bpel:assign>
<bpel:flow name="calcFlow"><bpel:invoke name="calcOrderCost" partnerLink="OrderPL" operation="calcOrderCosts" inputVariable="calcOrderRequest" outputVariable="calcOrderResponse"></bpel:invoke><bpel:invoke name="calcShipmentCost" partnerLink="ShipmentPL" operation="calcShipmentCosts" portType="ns:ShipmentPortType" inputVariable="calcShipmentCostRequest" outputVariable="calcShipmentCostResponse"></bpel:invoke><bpel:invoke name="calcTransactionCost" partnerLink="PaymentPL" operation="calcTransactionCosts" portType="ns:PaymentPortType" inputVariable="calcTranactionCostRequest" outputVariable="calcTransactionCostResponse"></bpel:invoke></bpel:flow>
......@@ -340,7 +373,7 @@
</bpel:copy>
<bpel:copy><bpel:from part="storeOrderDetailsInput" variable="input">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0">
<![CDATA[ns:customerId]]>
<![CDATA[ns:orderId]]>
</bpel:query>
</bpel:from>
<bpel:to part="checkAvailabilityAsyncInput" variable="InventoryPLRequest">
......@@ -350,14 +383,7 @@
</bpel:to>
</bpel:copy>
<bpel:copy><bpel:from part="storeOrderDetailsInput" variable="input">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:products/ns:product[1]/ns:productId]]></bpel:query>
</bpel:from>
<bpel:to part="checkAvailabilityAsyncInput" variable="InventoryPLRequest">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[ns:productId[1]]]></bpel:query>
</bpel:to>
</bpel:copy>
<bpel:copy><bpel:from>
<![CDATA["http://46.101.159.46:32880/ode/processes/IntentoryCallbackService"]]>
</bpel:from>
......@@ -381,24 +407,26 @@
<bpel:correlation set="newCorrelationSet" initiate="no"></bpel:correlation>
</bpel:correlations>
</bpel:receive>
</bpel:sequence>
</bpel:flow>
<bpel:invoke name="conductPayment" partnerLink="PaymentPL" operation="conductPayment" portType="ns:PaymentPortType" inputVariable="conductPaymentRequest" outputVariable="conductPaymentResponse"></bpel:invoke>
<bpel:invoke name="shipProducts" partnerLink="ShipmentPL" operation="shipProducts" portType="ns:ShipmentPortType" inputVariable="shipProductsRequest" outputVariable="shipProdctsResponse"></bpel:invoke>
<bpel:assign validate="no" name="AssignOutput">
<bpel:copy>
<bpel:from><bpel:literal><tns:ConductOrder84Response xmlns:tns="group12" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<bpel:if name="Available"><bpel:condition><![CDATA[count($InventroyCallBackPLRequest.onFinishCheckAvailabilityInput/ns:productList/ns:product[ns:status/ns:currentAvailability = "available"]) = 0 ]]></bpel:condition>
<bpel:sequence>
<bpel:invoke name="conductPayment" partnerLink="PaymentPL" operation="conductPayment" portType="ns:PaymentPortType" inputVariable="conductPaymentRequest" outputVariable="conductPaymentResponse"></bpel:invoke>
<bpel:invoke name="shipProducts" partnerLink="ShipmentPL" operation="shipProducts" portType="ns:ShipmentPortType" inputVariable="shipProductsRequest" outputVariable="shipProdctsResponse"></bpel:invoke>
<bpel:assign validate="no" name="AssignOutput">
<bpel:copy><bpel:from><bpel:literal><tns:ConductOrder84Response xmlns:tns="group12" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:result>tns:result</tns:result>
<tns:price>0.0</tns:price>
</tns:ConductOrder84Response>
</bpel:literal></bpel:from>
<bpel:to part="payload" variable="output"></bpel:to>
</bpel:copy>
<bpel:copy>
</bpel:copy><bpel:copy>
<bpel:from part="shipProductsOutput" variable="shipProdctsResponse"></bpel:from>
<bpel:to part="payload" variable="output">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[tns:result]]></bpel:query>
......@@ -418,7 +446,43 @@
</bpel:to>
</bpel:copy>
</bpel:assign>
</bpel:assign>
</bpel:sequence>
<bpel:else>
<bpel:sequence>
<bpel:invoke name="cancelOrder" partnerLink="OrderPL" operation="cancelOrder" portType="ns:OrderPortType" inputVariable="cancelOrderRequest"></bpel:invoke>
<bpel:assign validate="no" name="AssignCancelNotification">
<bpel:copy>
<bpel:from><bpel:literal><tns:ConductOrder84Response xmlns:tns="group12" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:result>tns:result</tns:result>
<tns:price>0.0</tns:price>
</tns:ConductOrder84Response>
</bpel:literal></bpel:from>
<bpel:to variable="output" part="payload"></bpel:to>
</bpel:copy>
<bpel:copy>
<bpel:from part="onFinishCheckAvailabilityInput" variable="InventroyCallBackPLRequest">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0">
<![CDATA[ns:productList/ns:product[ns:status/ns:currentAvailability != "available"]]]>
</bpel:query>
</bpel:from>
<bpel:to part="payload" variable="output">
<bpel:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0"><![CDATA[tns:result]]></bpel:query>
</bpel:to>
</bpel:copy>
</bpel:assign>
</bpel:sequence>
</bpel:else>
</bpel:if>
<bpel:reply name="replyOutput" partnerLink="client" portType="tns:ConductOrder84" operation="process" variable="output">
</bpel:reply>
</bpel:sequence>
......
......@@ -18,7 +18,7 @@
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#/"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ProcessExtension" modificationStamp="1479521853482" processName="{group12}ConductOrder84" processVersion="14"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ProcessExtension" modificationStamp="1479523528229" processName="{group12}ConductOrder84" processVersion="20"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.1"/>
......@@ -93,95 +93,95 @@
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension" width="663" height="477"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.2"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.2/@activities.0"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.1/@activities.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension" x="16" y="36"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.2/@activities.1"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.1/@activities.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension" x="5" y="82"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.2/@activities.2"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.1/@activities.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension" x="-13" y="122"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.0"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.0"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.1"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.2"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.3"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.3"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.4"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.4"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.5"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.5"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.6"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.6"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.7"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.7"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.8"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.8"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.9"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1/@copy.9"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.10"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.1"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.3/@copy.0"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.2/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.3/@copy.1"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.2/@copy.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.3/@copy.2"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.2/@copy.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0/@activities.3"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.0"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension" x="363" y="7" width="-1" height="-1"/>
</extensions>
<extensions>
......@@ -189,11 +189,11 @@
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1/@activities.0"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.1/@activities.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1/@activities.0/@copy.0"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.1/@activities.0/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
......@@ -201,47 +201,83 @@
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1/@activities.0/@copy.2"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.1/@activities.0/@copy.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.5/@copy.0"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@activity/@activities.2/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@activity/@activities.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@activity/@activities.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.5"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@activity/@activities.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.5/@copy.1"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@activity/@activities.2/@copy.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.6"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.5"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.1/@activities.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1/@activities.0/@copy.3"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.1/@activities.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@activity/@activities.2/@copy.2"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1/@activities.1"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.1/@activities.0/@copy.3"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.1/@activities.0/@copy.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@activity"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1/@activities.2"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@else/@activity/@activities.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.5/@copy.2"/>
<extendedObject href="ConductOrder84.bpel#//@variables/@children.16"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@else/@activity"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@else/@activity/@activities.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@else/@activity/@activities.1/@copy.1"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.4/@else/@activity/@activities.1/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
......@@ -249,11 +285,11 @@
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1/@activities.0/@copy.4"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.11"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
<extensions>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.2/@activities.1/@activities.0/@copy.1"/>
<extendedObject href="ConductOrder84.bpel#//@activity/@activities.3/@activities.0/@activities.0/@copy.0"/>
<extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension"/>
</extensions>
</extensionmodel:ExtensionMap>
......@@ -14604,4 +14604,732 @@
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[4]"/>
<oldElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:20:20.369+0100">
<parentElement elementType="sequence" elementName="checkAvaAsyn" elementXPath="/process/sequence[1]/flow[1]/sequence[2]"/>
<newElement elementType="if" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:20:20.380+0100">
<containingElement elementType="if" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<attribute attributeName="name" oldValue="" newValue="If"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:20:33.665+0100">
<containingElement elementType="if" elementName="If" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<attribute attributeName="name" oldValue="If" newValue="Not Available"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:23:11.432+0100">
<containingElement elementType="if" elementName="Not Available" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<attribute attributeName="name" oldValue="Not Available" newValue="NotAvailable"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:23:20.624+0100">
<parentElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<newElement elementType="exit" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:23:20.628+0100">
<containingElement elementType="exit" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/exit[1]"/>
<attribute attributeName="name" oldValue="" newValue="Exit"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:24:17.658+0100">
<parentElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<oldElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:24:17.658+0100">
<parentElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<newElement elementType="sequence" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:24:17.685+0100">
<parentElement elementType="sequence" elementName=""/>
<newElement elementType="empty" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/empty[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:24:17.697+0100">
<parentElement elementType="sequence" elementName=""/>
<newElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:24:17.700+0100">
<containingElement elementType="empty" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/empty[1]"/>
<attribute attributeName="name" oldValue="" newValue="Empty"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:24:21.503+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]"/>
<oldElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:24:21.531+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]"/>
<newElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:24:29.130+0100">
<parentElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<newElement elementType="else" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:24:32.110+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]"/>
<oldElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:24:32.137+0100">
<parentElement elementType="else" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/else[1]"/>
<newElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:26:39.961+0100">
<parentElement elementType="sequence" elementName="checkAvaAsyn" elementXPath="/process/sequence[1]/flow[1]/sequence[2]"/>
<oldElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:26:39.961+0100">
<parentElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<oldElement elementType="else" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/else[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:26:39.961+0100">
<parentElement elementType="else" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/else[1]"/>
<oldElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/else[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:26:39.961+0100">
<parentElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]"/>
<oldElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:26:39.961+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]"/>
<oldElement elementType="empty" elementName="Empty" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/empty[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:26:40.011+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<newElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/if[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:26:40.011+0100">
<parentElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/if[1]"/>
<newElement elementType="else" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:26:40.011+0100">
<parentElement elementType="else" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]"/>
<newElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/if[1]/else[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:26:40.011+0100">
<parentElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/if[1]"/>
<newElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:26:40.011+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]"/>
<newElement elementType="empty" elementName="Empty" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/if[1]/sequence[1]/empty[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:26:44.744+0100">
<parentElement elementType="else" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]"/>
<oldElement elementType="exit" elementName="Exit" elementXPath="/process/sequence[1]/if[1]/else[1]/exit[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:26:46.821+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]"/>
<oldElement elementType="empty" elementName="Empty" elementXPath="/process/sequence[1]/if[1]/sequence[1]/empty[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.873+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<oldElement elementType="invoke" elementName="conductPayment" elementXPath="/process/sequence[1]/invoke[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:01.902+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]"/>
<newElement elementType="invoke" elementName="conductPayment" elementXPath="/process/sequence[1]/if[1]/sequence[1]/invoke[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.907+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<oldElement elementType="invoke" elementName="shipProducts" elementXPath="/process/sequence[1]/invoke[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:01.977+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]"/>
<newElement elementType="invoke" elementName="shipProducts" elementXPath="/process/sequence[1]/if[1]/sequence[1]/invoke[2]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.993+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<oldElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[2]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.993+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[2]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.994+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.994+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.994+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[2]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.994+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.994+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.994+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/assign[2]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.995+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:01.995+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.049+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]"/>
<newElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]"/>
<newElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]"/>
<newElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]"/>
<newElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]"/>
<newElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[2]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]"/>
<newElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:02.050+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]"/>
<newElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[2]/copy[3]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.489+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]"/>
<oldElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.489+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.489+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.489+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.489+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.489+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.490+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.490+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.490+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:27:40.490+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]"/>
<newElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]"/>
<newElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]"/>
<newElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[2]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]"/>
<newElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:27:40.547+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]"/>
<newElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[3]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:28:04.564+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:28:04.595+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:28:04.623+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:28:07.316+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:28:07.316+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:28:55.033+0100">
<parentElement elementType="assign" elementName="AssignOutput" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:28:55.033+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:28:55.033+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/sequence[1]/assign[1]/copy[4]"/>
<oldElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:29:03.129+0100">
<parentElement elementType="else" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]"/>
<newElement elementType="invoke" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:29:03.131+0100">
<containingElement elementType="invoke" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
<attribute attributeName="name" oldValue="" newValue="Invoke"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:29:08.379+0100">
<containingElement elementType="invoke" elementName="Invoke" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
<attribute attributeName="name" oldValue="Invoke" newValue="cancleOrder"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:31:11.090+0100">
<parentElement elementType="variables" elementName="" elementXPath="/process/variables[1]"/>
<newElement elementType="variable" elementName="OrderPLRequest" elementXPath="/process/variables[1]/variable[17]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:31:11.091+0100">
<containingElement elementType="invoke" elementName="cancleOrder" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
<attribute attributeName="partnerLink" oldValue="" newValue="OrderPL"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:31:11.101+0100">
<containingElement elementType="invoke" elementName="cancleOrder" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
<attribute attributeName="operation" oldValue="" newValue="calcOrderCosts"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:31:11.108+0100">
<containingElement elementType="invoke" elementName="cancleOrder" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
<attribute attributeName="operation" oldValue="calcOrderCosts" newValue="cancelOrder"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:31:11.118+0100">
<containingElement elementType="invoke" elementName="cancleOrder" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
<attribute attributeName="portType" oldValue="" newValue="ns:OrderPortType"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:31:11.124+0100">
<containingElement elementType="invoke" elementName="cancleOrder" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
<attribute attributeName="inputVariable" oldValue="" newValue="OrderPLRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:31:30.696+0100">
<containingElement elementType="variable" elementName="OrderPLRequest" elementXPath="/process/variables[1]/variable[17]"/>
<attribute attributeName="name" oldValue="OrderPLRequest" newValue="cancelOrderRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:31:39.699+0100">
<containingElement elementType="invoke" elementName="cancleOrder" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
<attribute attributeName="name" oldValue="cancleOrder" newValue="cancelOrder"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:32:08.737+0100">
<parentElement elementType="else" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]"/>
<oldElement elementType="invoke" elementName="cancelOrder" elementXPath="/process/sequence[1]/if[1]/else[1]/invoke[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:32:08.737+0100">
<parentElement elementType="else" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]"/>
<newElement elementType="sequence" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:32:08.743+0100">
<parentElement elementType="sequence" elementName=""/>
<newElement elementType="invoke" elementName="cancelOrder" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/invoke[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:32:08.749+0100">
<parentElement elementType="sequence" elementName=""/>
<newElement elementType="assign" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:32:08.752+0100">
<containingElement elementType="assign" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]"/>
<attribute attributeName="name" oldValue="" newValue="Assign"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:32:19.067+0100">
<containingElement elementType="assign" elementName="Assign" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]"/>
<attribute attributeName="name" oldValue="Assign" newValue="AssignCancelNotification"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:32:58.551+0100">
<parentElement elementType="assign" elementName="AssignCancelNotification" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:32:58.587+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:32:58.619+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:33:01.363+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:33:01.363+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:33:02.628+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:33:02.629+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:33:10.170+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:33:10.170+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:33:45.932+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:33:45.933+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:33:45.934+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:33:45.935+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="part" oldValue="" newValue="onFinishCheckAvailabilityInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:33:45.940+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="variable" oldValue="" newValue="InventroyCallBackPLRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:31.579+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
<attribute attributeName="variable" oldValue="InventroyCallBackPLRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:31.583+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
<attribute attributeName="part" oldValue="onFinishCheckAvailabilityInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:31.586+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:31.596+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
<attribute attributeName="part" oldValue="" newValue="onFinishCheckAvailabilityInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:31.598+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="InventroyCallBackPLRequest"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:38.790+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:38.791+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:38.792+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:38.793+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
<attribute attributeName="part" oldValue="" newValue="payload"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:34:38.800+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
<attribute attributeName="variable" oldValue="" newValue="output"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:34:40.204+0100">
<parentElement elementType="assign" elementName="AssignCancelNotification" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:34:40.212+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:34:40.220+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:34:40.233+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:34:40.233+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:34:40.239+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:34:40.239+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:36:28.626+0100">
<parentElement elementType="assign" elementName="InitStuff" elementXPath="/process/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:36:28.658+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:36:28.663+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:36:35.665+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:36:35.665+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="LiteralAdded" timestamp="2016-11-19T03:36:35.680+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="literal" newValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="LiteralRemoved" timestamp="2016-11-19T03:36:38.578+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="literal" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="LiteralAdded" timestamp="2016-11-19T03:36:38.578+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="literal" newValue="&lt;tns:storeOrderDetails xmlns:tns=&quot;http://iaas.uni-stuttgart.de/labs/FlowSOG&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;>&#xD;&#xA; &lt;tns:orderId/>&#xD;&#xA; &lt;tns:customerId/>&#xD;&#xA; &lt;tns:products>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>44162d90-9315-4acc-980e-cf975c6b9397&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>2&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>3bae3778-8577-4b36-9572-a0b020931ba5&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>1&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;/tns:products>&#xD;&#xA; &lt;tns:shippingAddress>2nd Street 4242&lt;/tns:shippingAddress>&#xD;&#xA; &lt;tns:paymentDetails>&#xD;&#xA; &lt;tns:bankName>myBank&lt;/tns:bankName>&#xD;&#xA; &lt;tns:bankAddress>myBankAddress&lt;/tns:bankAddress>&#xD;&#xA; &lt;tns:accountNumber>myAccountNumber&lt;/tns:accountNumber>&#xD;&#xA; &lt;tns:accountHolderName>Mrs. X&lt;/tns:accountHolderName>&#xD;&#xA; &lt;/tns:paymentDetails>&#xD;&#xA;&lt;/tns:storeOrderDetails>"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:36:41.028+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]/to[1]"/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:36:41.029+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]/to[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:36:41.030+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]/to[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:36:41.032+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]/to[1]"/>
<attribute attributeName="part" oldValue="" newValue="storeOrderDetailsInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:36:41.035+0100">
<containingElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[4]/to[1]"/>
<attribute attributeName="variable" oldValue="" newValue="input"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="LiteralRemoved" timestamp="2016-11-19T03:36:48.415+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="literal" oldValue="&lt;tns:storeOrderDetails xmlns:tns=&quot;http://iaas.uni-stuttgart.de/labs/FlowSOG&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;>&#xD;&#xA; &lt;tns:orderId/>&#xD;&#xA; &lt;tns:customerId/>&#xD;&#xA; &lt;tns:products>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>44162d90-9315-4acc-980e-cf975c6b9397&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>2&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>3bae3778-8577-4b36-9572-a0b020931ba5&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>1&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;/tns:products>&#xD;&#xA; &lt;tns:shippingAddress>2nd Street 4242&lt;/tns:shippingAddress>&#xD;&#xA; &lt;tns:paymentDetails>&#xD;&#xA; &lt;tns:bankName>myBank&lt;/tns:bankName>&#xD;&#xA; &lt;tns:bankAddress>myBankAddress&lt;/tns:bankAddress>&#xD;&#xA; &lt;tns:accountNumber>myAccountNumber&lt;/tns:accountNumber>&#xD;&#xA; &lt;tns:accountHolderName>Mrs. X&lt;/tns:accountHolderName>&#xD;&#xA; &lt;/tns:paymentDetails>&#xD;&#xA;&lt;/tns:storeOrderDetails>"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="LiteralAdded" timestamp="2016-11-19T03:36:48.415+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="literal" newValue="&lt;tns:storeOrderDetails xmlns:tns=&quot;http://iaas.uni-stuttgart.de/labs/FlowSOG&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;>&#xD;&#xA; &lt;tns:orderId/>&#xD;&#xA; &lt;tns:customerId/>&#xD;&#xA; &lt;tns:products>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>66968a93-4ec6-4fa2-bf2d-3b0f59e56738&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>2&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>3bae3778-8577-4b36-9572-a0b020931ba5&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>1&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;/tns:products>&#xD;&#xA; &lt;tns:shippingAddress>2nd Street 4242&lt;/tns:shippingAddress>&#xD;&#xA; &lt;tns:paymentDetails>&#xD;&#xA; &lt;tns:bankName>myBank&lt;/tns:bankName>&#xD;&#xA; &lt;tns:bankAddress>myBankAddress&lt;/tns:bankAddress>&#xD;&#xA; &lt;tns:accountNumber>myAccountNumber&lt;/tns:accountNumber>&#xD;&#xA; &lt;tns:accountHolderName>Mrs. X&lt;/tns:accountHolderName>&#xD;&#xA; &lt;/tns:paymentDetails>&#xD;&#xA;&lt;/tns:storeOrderDetails>"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="LiteralRemoved" timestamp="2016-11-19T03:37:08.713+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="literal" oldValue="&lt;tns:storeOrderDetails xmlns:tns=&quot;http://iaas.uni-stuttgart.de/labs/FlowSOG&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;>&#xD;&#xA; &lt;tns:orderId/>&#xD;&#xA; &lt;tns:customerId/>&#xD;&#xA; &lt;tns:products>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>66968a93-4ec6-4fa2-bf2d-3b0f59e56738&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>2&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>3bae3778-8577-4b36-9572-a0b020931ba5&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>1&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;/tns:products>&#xD;&#xA; &lt;tns:shippingAddress>2nd Street 4242&lt;/tns:shippingAddress>&#xD;&#xA; &lt;tns:paymentDetails>&#xD;&#xA; &lt;tns:bankName>myBank&lt;/tns:bankName>&#xD;&#xA; &lt;tns:bankAddress>myBankAddress&lt;/tns:bankAddress>&#xD;&#xA; &lt;tns:accountNumber>myAccountNumber&lt;/tns:accountNumber>&#xD;&#xA; &lt;tns:accountHolderName>Mrs. X&lt;/tns:accountHolderName>&#xD;&#xA; &lt;/tns:paymentDetails>&#xD;&#xA;&lt;/tns:storeOrderDetails>"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="LiteralAdded" timestamp="2016-11-19T03:37:08.713+0100">
<containingElement elementType="from" elementName=""/>
<attribute attributeName="literal" newValue="&lt;tns:storeOrderDetails xmlns:tns=&quot;http://iaas.uni-stuttgart.de/labs/FlowSOG&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;>&#xD;&#xA; &lt;tns:orderId/>&#xD;&#xA; &lt;tns:customerId/>&#xD;&#xA; &lt;tns:products>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>66968a93-4ec6-4fa2-bf2d-3b0f59e56738&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>2&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;tns:product>&#xD;&#xA; &lt;tns:productId>3bae3778-8577-4b36-9572-a0b020931ba5&lt;/tns:productId>&#xD;&#xA; &lt;tns:numberOfItems>1&lt;/tns:numberOfItems>&#xD;&#xA; &lt;/tns:product>&#xD;&#xA; &lt;/tns:products>&#xD;&#xA; &lt;tns:shippingAddress>2nd Street 4242&lt;/tns:shippingAddress>&#xD;&#xA; &lt;tns:paymentDetails>&#xD;&#xA; &lt;tns:bankName>myBank&lt;/tns:bankName>&#xD;&#xA; &lt;tns:bankAddress>myBankAddress&lt;/tns:bankAddress>&#xD;&#xA; &lt;tns:accountNumber>myAccountNumber&lt;/tns:accountNumber>&#xD;&#xA; &lt;tns:accountHolderName>Mrs. X&lt;/tns:accountHolderName>&#xD;&#xA; &lt;/tns:paymentDetails>&#xD;&#xA;&lt;/tns:storeOrderDetails>&#xD;&#xA;&lt;!-- not available -->"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:37:19.682+0100">
<parentElement elementType="assign" elementName="InitStuff" elementXPath="/process/sequence[1]/assign[1]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[3]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:37:19.682+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[3]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[3]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:37:19.683+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/assign[1]/copy[3]"/>
<oldElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:38:38.492+0100">
<containingElement elementType="if" elementName="NotAvailable" elementXPath="/process/sequence[1]/if[1]"/>
<attribute attributeName="name" oldValue="NotAvailable" newValue="Available"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:40:35.541+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]"/>
<newElement elementType="assign" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:40:35.544+0100">
<containingElement elementType="assign" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]"/>
<attribute attributeName="name" oldValue="" newValue="Assign"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:40:47.201+0100">
<parentElement elementType="sequence" elementName="" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]"/>
<oldElement elementType="assign" elementName="Assign" elementXPath="/process/sequence[1]/if[1]/else[1]/sequence[1]/assign[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:41:02.139+0100">
<parentElement elementType="assign" elementName="assignOrderID" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[11]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:41:02.146+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[11]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:41:02.152+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[11]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:28.372+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[11]/from[1]"/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:28.373+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[11]/from[1]"/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:28.373+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[11]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:28.375+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[11]/from[1]"/>
<attribute attributeName="part" oldValue="" newValue="storeOrderDetailsOutput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:28.382+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[11]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="storeOrderDetailsResponse"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:32.625+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:32.626+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:32.627+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:32.628+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="part" oldValue="" newValue="cancelOrderInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:41:32.631+0100">
<containingElement elementType="to" elementName=""/>
<attribute attributeName="variable" oldValue="" newValue="cancelOrderRequest"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:41:34.495+0100">
<parentElement elementType="assign" elementName="assignOrderID" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]"/>
<newElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:41:34.505+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:41:34.513+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:41:34.526+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:41:34.526+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="from" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:41:34.533+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:41:34.533+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/assign[1]/copy[1]"/>
<newElement elementType="to" elementName=""/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:44:04.935+0100">
<parentElement elementType="assign" elementName="assignProductIds" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]"/>
<oldElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[4]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:44:04.935+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[4]"/>
<oldElement elementType="to" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[3]/to[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:44:04.935+0100">
<parentElement elementType="copy" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[4]"/>
<oldElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[3]/from[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementRemoved" timestamp="2016-11-19T03:45:04.040+0100">
<parentElement elementType="sequence" elementName="Sequence" elementXPath="/process/sequence[1]/flow[1]/sequence[1]"/>
<oldElement elementType="invoke" elementName="storeOrderDetails" elementXPath="/process/sequence[1]/flow[1]/sequence[1]/invoke[1]"/>
</modelChange>
<modelChange xsi:type="bplog:StructuralChange" changeReason="ElementAdded" timestamp="2016-11-19T03:45:04.091+0100">
<parentElement elementType="sequence" elementName="main" elementXPath="/process/sequence[1]"/>
<newElement elementType="invoke" elementName="storeOrderDetails" elementXPath="/process/sequence[1]/invoke[1]"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:45:28.154+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[2]/from[1]"/>
<attribute attributeName="variable" oldValue="input"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:45:28.164+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[2]/from[1]"/>
<attribute attributeName="part" oldValue="storeOrderDetailsInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:45:28.169+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[2]/from[1]"/>
<attribute attributeName="property" oldValue=""/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:45:28.175+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[2]/from[1]"/>
<attribute attributeName="part" oldValue="" newValue="storeOrderDetailsInput"/>
</modelChange>
<modelChange xsi:type="bplog:ValueChange" changeReason="AttributeChanged" timestamp="2016-11-19T03:45:28.178+0100">
<containingElement elementType="from" elementName="" elementXPath="/process/sequence[1]/flow[1]/sequence[2]/assign[1]/copy[2]/from[1]"/>
<attribute attributeName="variable" oldValue="" newValue="input"/>
</modelChange>
</bplog:Log>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment