[jbpm-commits] JBoss JBPM SVN: r1805 - jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket.

do-not-reply at jboss.org do-not-reply at jboss.org
Sat Aug 2 12:46:05 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-08-02 12:46:05 -0400 (Sat, 02 Aug 2008)
New Revision: 1805

Added:
   jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket-stp-api10.xml
Modified:
   jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket.bpmn
   jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket.bpmn_diagram
Log:
Add bpmn include

Added: jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket-stp-api10.xml
===================================================================
--- jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket-stp-api10.xml	                        (rev 0)
+++ jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket-stp-api10.xml	2008-08-02 16:46:05 UTC (rev 1805)
@@ -0,0 +1,227 @@
+<ns2:process name='Airticket' xmlns:ns2='urn:bpm.jboss:pdl-0.1'>
+  <include namespace="http://stp.eclipse.org/bpmn" location="samples/airticket/airticket.bpmn" />
+  <task name='ReceiveReqTask' taskType='Receive'>
+    <msgref nameRef='ReqDataMsg' />
+  </task>
+  <task name='ValidateTask' taskType='None'>
+    <execution-handler class='org.jboss.bpm.samples.airticket.ValidationHandler' />
+    <input-set>
+      <property>
+        <name>Name</name>
+      </property>
+      <property>
+        <name>From</name>
+      </property>
+      <property>
+        <name>To</name>
+      </property>
+      <property>
+        <name>Date</name>
+      </property>
+      <property>
+        <name>Seats</name>
+      </property>
+    </input-set>
+    <output-set>
+      <property>
+        <name>isReqDataValid</name>
+      </property>
+    </output-set>
+  </task>
+  <exclusive-gateway name='ValidateGateway'>
+    <seqflow conditionType='Expression' to='CheckAvailabilityTask'>
+      <condition lang='MVEL'>isReqDataValid == true</condition>
+    </seqflow>
+    <seqflow conditionType='Default' to='SendInvalidTask' />
+  </exclusive-gateway>
+  <task name='CheckAvailabilityTask' taskType='None'>
+    <execution-handler class='org.jboss.bpm.samples.airticket.AvailabilityHandler' />
+    <input-set>
+      <property>
+        <name>From</name>
+      </property>
+      <property>
+        <name>To</name>
+      </property>
+      <property>
+        <name>Date</name>
+      </property>
+      <property>
+        <name>Seats</name>
+      </property>
+    </input-set>
+    <output-set>
+      <property>
+        <name>isAvailable</name>
+      </property>
+      <property>
+        <name>Price</name>
+      </property>
+    </output-set>
+  </task>
+  <task name='SendInvalidTask' taskType='Send'>
+    <msgref nameRef='InvalidDataMsg' />
+  </task>
+  <exclusive-gateway name='AvailabilityGateway'>
+    <seqflow conditionType='Expression' to='SendOfferTask'>
+      <condition lang='MVEL'>isAvailable == true</condition>
+    </seqflow>
+    <seqflow conditionType='Default' to='SendNotAvailableTask' />
+  </exclusive-gateway>
+  <task name='SendOfferTask' taskType='Send'>
+    <msgref nameRef='OfferMsg' />
+  </task>
+  <task name='SendNotAvailableTask' taskType='Send'>
+    <msgref nameRef='NotAvailableMsg' />
+  </task>
+  <task name='ReceiveOrderTask' taskType='Receive'>
+    <msgref nameRef='AcceptOfferMsg' />
+  </task>
+  <exclusive-gateway name='AcceptOfferGateway'>
+    <seqflow conditionType='Expression' to='ParallelSplitGateway'>
+      <condition lang='MVEL'>isOfferAccepted == true</condition>
+    </seqflow>
+    <seqflow conditionType='Default' to='ReceiveReqTask' />
+  </exclusive-gateway>
+  <task name='CreditCardTask' taskType='None'>
+    <input-set>
+      <property>
+        <name>CreditCard</name>
+      </property>
+      <property>
+        <name>Expire</name>
+      </property>
+      <property>
+        <name>Price</name>
+      </property>
+    </input-set>
+  </task>
+  <task name='BookingTask' taskType='None'>
+    <input-set>
+      <property>
+        <name>Name</name>
+      </property>
+      <property>
+        <name>From</name>
+      </property>
+      <property>
+        <name>To</name>
+      </property>
+      <property>
+        <name>Date</name>
+      </property>
+      <property>
+        <name>Seats</name>
+      </property>
+    </input-set>
+  </task>
+  <task name='SendConfirmTask' taskType='Send'>
+    <msgref nameRef='ConfirmMsg' />
+  </task>
+  <message name='ReqDataMsg'>
+    <property correlation='true'>
+      <name>Name</name>
+    </property>
+    <property correlation='true'>
+      <name>From</name>
+    </property>
+    <property correlation='true'>
+      <name>To</name>
+    </property>
+    <property correlation='true'>
+      <name>Date</name>
+    </property>
+    <property correlation='true'>
+      <name>Seats</name>
+    </property>
+  </message>
+  <message name='InvalidDataMsg'>
+    <to>jboss.bpm:test=testProcessMarshaller</to>
+    <property correlation='true'>
+      <name>Name</name>
+    </property>
+    <property correlation='true'>
+      <name>From</name>
+    </property>
+    <property correlation='true'>
+      <name>To</name>
+    </property>
+    <property correlation='true'>
+      <name>Date</name>
+    </property>
+    <property correlation='true'>
+      <name>Seats</name>
+    </property>
+  </message>
+  <message name='NotAvailableMsg'>
+    <to>jboss.bpm:test=testProcessMarshaller</to>
+    <property correlation='true'>
+      <name>Name</name>
+    </property>
+    <property correlation='true'>
+      <name>From</name>
+    </property>
+    <property correlation='true'>
+      <name>To</name>
+    </property>
+    <property correlation='true'>
+      <name>Date</name>
+    </property>
+    <property correlation='true'>
+      <name>Seats</name>
+    </property>
+  </message>
+  <message name='OfferMsg'>
+    <to>jboss.bpm:test=testProcessMarshaller</to>
+    <property correlation='true'>
+      <name>Name</name>
+    </property>
+    <property correlation='true'>
+      <name>From</name>
+    </property>
+    <property correlation='true'>
+      <name>To</name>
+    </property>
+    <property correlation='true'>
+      <name>Date</name>
+    </property>
+    <property correlation='true'>
+      <name>Seats</name>
+    </property>
+    <property correlation='true'>
+      <name>Price</name>
+    </property>
+  </message>
+  <message name='AcceptOfferMsg'>
+    <property correlation='true'>
+      <name>CreditCard</name>
+    </property>
+    <property correlation='true'>
+      <name>Expire</name>
+    </property>
+    <property correlation='true'>
+      <name>isOfferAccepted</name>
+    </property>
+  </message>
+  <message name='ConfirmMsg'>
+    <to>jboss.bpm:test=testProcessMarshaller</to>
+    <property correlation='true'>
+      <name>Name</name>
+    </property>
+    <property correlation='true'>
+      <name>From</name>
+    </property>
+    <property correlation='true'>
+      <name>To</name>
+    </property>
+    <property correlation='true'>
+      <name>Date</name>
+    </property>
+    <property correlation='true'>
+      <name>Seats</name>
+    </property>
+    <property correlation='true'>
+      <name>Price</name>
+    </property>
+  </message>
+</ns2:process>
\ No newline at end of file


Property changes on: jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket-stp-api10.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Modified: jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket.bpmn
===================================================================
--- jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket.bpmn	2008-08-02 15:47:06 UTC (rev 1804)
+++ jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket.bpmn	2008-08-02 16:46:05 UTC (rev 1805)
@@ -2,8 +2,7 @@
 <bpmn:BpmnDiagram xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:bpmn="http://stp.eclipse.org/bpmn" xmi:id="_iYxIQFhrEd2aHsyOaYt_3g" iD="_iYwhMFhrEd2aHsyOaYt_3g">
   <pools xmi:type="bpmn:Pool" xmi:id="_dhOfoVhtEd2aHsyOaYt_3g" iD="_dhOfoFhtEd2aHsyOaYt_3g" name="Pool">
     <vertices xmi:type="bpmn:Activity" xmi:id="_huULIVhtEd2aHsyOaYt_3g" iD="_huULIFhtEd2aHsyOaYt_3g" outgoingEdges="_iyzG8VhtEd2aHsyOaYt_3g" activityType="EventStartEmpty"/>
-    <vertices xmi:type="bpmn:Activity" xmi:id="_iyPtUVhtEd2aHsyOaYt_3g" iD="_iyPtUFhtEd2aHsyOaYt_3g" outgoingEdges="_lMqhUFhtEd2aHsyOaYt_3g" incomingEdges="_iyzG8VhtEd2aHsyOaYt_3g _1UWrsVhvEd2aHsyOaYt_3g" name="HomePage" activityType="Task"/>
-    <vertices xmi:type="bpmn:Activity" xmi:id="_lMlo0VhtEd2aHsyOaYt_3g" iD="_lMlo0FhtEd2aHsyOaYt_3g" outgoingEdges="_rsTeQVhtEd2aHsyOaYt_3g" incomingEdges="_lMqhUFhtEd2aHsyOaYt_3g _efVRMVhuEd2aHsyOaYt_3g _r-90MVhwEd2aHsyOaYt_3g" name="ReceiveReq" activityType="Task"/>
+    <vertices xmi:type="bpmn:Activity" xmi:id="_lMlo0VhtEd2aHsyOaYt_3g" iD="_lMlo0FhtEd2aHsyOaYt_3g" outgoingEdges="_rsTeQVhtEd2aHsyOaYt_3g" incomingEdges="_efVRMVhuEd2aHsyOaYt_3g _r-90MVhwEd2aHsyOaYt_3g _1UWrsVhvEd2aHsyOaYt_3g _iyzG8VhtEd2aHsyOaYt_3g" name="ReceiveReq" activityType="Task"/>
     <vertices xmi:type="bpmn:Activity" xmi:id="_rsQa8VhtEd2aHsyOaYt_3g" iD="_rsQa8FhtEd2aHsyOaYt_3g" outgoingEdges="_zUIyUFhtEd2aHsyOaYt_3g _ApdYMVhvEd2aHsyOaYt_3g" incomingEdges="_rsTeQVhtEd2aHsyOaYt_3g" name="  Validate" activityType="GatewayDataBasedExclusive"/>
     <vertices xmi:type="bpmn:Activity" xmi:id="_zUDSwVhtEd2aHsyOaYt_3g" iD="_zUDSwFhtEd2aHsyOaYt_3g" outgoingEdges="_9Q4IQVhtEd2aHsyOaYt_3g" incomingEdges="_zUIyUFhtEd2aHsyOaYt_3g" name="CheckAvail" activityType="Task"/>
     <vertices xmi:type="bpmn:Activity" xmi:id="_9Q1sAFhtEd2aHsyOaYt_3g" iD="_9Q1E8FhtEd2aHsyOaYt_3g" outgoingEdges="_BdGREVhuEd2aHsyOaYt_3g _fHP64VhwEd2aHsyOaYt_3g" incomingEdges="_9Q4IQVhtEd2aHsyOaYt_3g" name="Available" activityType="GatewayDataBasedExclusive"/>
@@ -18,8 +17,7 @@
     <vertices xmi:type="bpmn:Activity" xmi:id="_QQMAAVhwEd2aHsyOaYt_3g" iD="_QQMAAFhwEd2aHsyOaYt_3g" incomingEdges="_QQQ4gVhwEd2aHsyOaYt_3g" activityType="EventEndEmpty"/>
     <vertices xmi:type="bpmn:Activity" xmi:id="_fHKbUVhwEd2aHsyOaYt_3g" iD="_fHKbUFhwEd2aHsyOaYt_3g" outgoingEdges="_r-90MVhwEd2aHsyOaYt_3g" incomingEdges="_fHP64VhwEd2aHsyOaYt_3g" name="    SendNotAvail" activityType="Task"/>
     <vertices xmi:type="bpmn:Activity" xmi:id="_tTzG4Fh1Ed2aHsyOaYt_3g" iD="_tTyf0Fh1Ed2aHsyOaYt_3g" outgoingEdges="_waDtMVh1Ed2aHsyOaYt_3g" incomingEdges="_tT3_YVh1Ed2aHsyOaYt_3g" name="ReceiveOrder" activityType="Task"/>
-    <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_iyzG8VhtEd2aHsyOaYt_3g" iD="_iyzG8FhtEd2aHsyOaYt_3g" source="_huULIVhtEd2aHsyOaYt_3g" target="_iyPtUVhtEd2aHsyOaYt_3g"/>
-    <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_lMqhUFhtEd2aHsyOaYt_3g" iD="_lMp6QFhtEd2aHsyOaYt_3g" source="_iyPtUVhtEd2aHsyOaYt_3g" target="_lMlo0VhtEd2aHsyOaYt_3g"/>
+    <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_iyzG8VhtEd2aHsyOaYt_3g" iD="_iyzG8FhtEd2aHsyOaYt_3g" source="_huULIVhtEd2aHsyOaYt_3g" target="_lMlo0VhtEd2aHsyOaYt_3g"/>
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_rsTeQVhtEd2aHsyOaYt_3g" iD="_rsTeQFhtEd2aHsyOaYt_3g" source="_lMlo0VhtEd2aHsyOaYt_3g" target="_rsQa8VhtEd2aHsyOaYt_3g"/>
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_zUIyUFhtEd2aHsyOaYt_3g" iD="_zUILQFhtEd2aHsyOaYt_3g" source="_rsQa8VhtEd2aHsyOaYt_3g" target="_zUDSwVhtEd2aHsyOaYt_3g"/>
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_9Q4IQVhtEd2aHsyOaYt_3g" iD="_9Q4IQFhtEd2aHsyOaYt_3g" source="_zUDSwVhtEd2aHsyOaYt_3g" target="_9Q1sAFhtEd2aHsyOaYt_3g"/>
@@ -29,7 +27,7 @@
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_ApdYMVhvEd2aHsyOaYt_3g" iD="_ApdYMFhvEd2aHsyOaYt_3g" source="_rsQa8VhtEd2aHsyOaYt_3g" target="_T7iiUVhuEd2aHsyOaYt_3g"/>
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_VtHYMVhvEd2aHsyOaYt_3g" iD="_VtHYMFhvEd2aHsyOaYt_3g" source="_lVLHoVhuEd2aHsyOaYt_3g" target="_VtDt0VhvEd2aHsyOaYt_3g"/>
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_Ypm-gVhvEd2aHsyOaYt_3g" iD="_Ypm-gFhvEd2aHsyOaYt_3g" source="_lVLHoVhuEd2aHsyOaYt_3g" target="_Ypj7MVhvEd2aHsyOaYt_3g"/>
-    <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_1UWrsVhvEd2aHsyOaYt_3g" iD="_1UWrsFhvEd2aHsyOaYt_3g" source="_D-IqcVhuEd2aHsyOaYt_3g" target="_iyPtUVhtEd2aHsyOaYt_3g"/>
+    <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_1UWrsVhvEd2aHsyOaYt_3g" iD="_1UWrsFhvEd2aHsyOaYt_3g" source="_D-IqcVhuEd2aHsyOaYt_3g" target="_lMlo0VhtEd2aHsyOaYt_3g"/>
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_Fj6DgVhwEd2aHsyOaYt_3g" iD="_Fj6DgFhwEd2aHsyOaYt_3g" source="_VtDt0VhvEd2aHsyOaYt_3g" target="_Fj1LAVhwEd2aHsyOaYt_3g"/>
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_GJUdsVhwEd2aHsyOaYt_3g" iD="_GJUdsFhwEd2aHsyOaYt_3g" source="_Ypj7MVhvEd2aHsyOaYt_3g" target="_Fj1LAVhwEd2aHsyOaYt_3g"/>
     <sequenceEdges xmi:type="bpmn:SequenceEdge" xmi:id="_LXfLsVhwEd2aHsyOaYt_3g" iD="_LXfLsFhwEd2aHsyOaYt_3g" source="_Fj1LAVhwEd2aHsyOaYt_3g" target="_LXbhUVhwEd2aHsyOaYt_3g"/>

Modified: jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket.bpmn_diagram
===================================================================
--- jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket.bpmn_diagram	2008-08-02 15:47:06 UTC (rev 1804)
+++ jbossbpm/spec/trunk/modules/samples/airticket/server/src/test/resources/samples/airticket/airticket.bpmn_diagram	2008-08-02 16:46:05 UTC (rev 1805)
@@ -13,17 +13,8 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_huUyM1htEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_huUyNFhtEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_huULIVhtEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_huUyNVhtEd2aHsyOaYt_3g" y="96"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_huUyNVhtEd2aHsyOaYt_3g" x="24" y="48"/>
       </children>
-      <children xmi:type="notation:Node" xmi:id="_iyQUYFhtEd2aHsyOaYt_3g" type="2001">
-        <children xmi:type="notation:Node" xmi:id="_iyQ7cFhtEd2aHsyOaYt_3g" type="4001"/>
-        <styles xmi:type="notation:FontStyle" xmi:id="_iyQUYVhtEd2aHsyOaYt_3g" fontName="Arial"/>
-        <styles xmi:type="notation:DescriptionStyle" xmi:id="_iyQUYlhtEd2aHsyOaYt_3g"/>
-        <styles xmi:type="notation:FillStyle" xmi:id="_iyQUY1htEd2aHsyOaYt_3g"/>
-        <styles xmi:type="notation:LineStyle" xmi:id="_iyQUZFhtEd2aHsyOaYt_3g" lineColor="0"/>
-        <element xmi:type="bpmn:Activity" href="airticket.bpmn#_iyPtUVhtEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_iyQUZVhtEd2aHsyOaYt_3g" x="60" y="84"/>
-      </children>
       <children xmi:type="notation:Node" xmi:id="_lMmP4FhtEd2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_lMm28FhtEd2aHsyOaYt_3g" type="4001"/>
         <styles xmi:type="notation:FontStyle" xmi:id="_lMmP4VhtEd2aHsyOaYt_3g" fontName="Arial"/>
@@ -31,7 +22,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_lMmP41htEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_lMmP5FhtEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_lMlo0VhtEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_lMmP5VhtEd2aHsyOaYt_3g" x="204" y="84"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_lMmP5VhtEd2aHsyOaYt_3g" x="96" y="84"/>
       </children>
       <children xmi:type="notation:Node" xmi:id="_rsRCAFhtEd2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_rsRpEFhtEd2aHsyOaYt_3g" type="4001"/>
@@ -40,7 +31,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_rsRCA1htEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_rsRCBFhtEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_rsQa8VhtEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_rsRCBVhtEd2aHsyOaYt_3g" x="360" y="72"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_rsRCBVhtEd2aHsyOaYt_3g" x="252" y="72"/>
       </children>
       <children xmi:type="notation:Node" xmi:id="_zUEg4FhtEd2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_zUEg5lhtEd2aHsyOaYt_3g" type="4001"/>
@@ -49,7 +40,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_zUEg41htEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_zUEg5FhtEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_zUDSwVhtEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_zUEg5VhtEd2aHsyOaYt_3g" x="432"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_zUEg5VhtEd2aHsyOaYt_3g" x="324"/>
       </children>
       <children xmi:type="notation:Node" xmi:id="_9Q1sAVhtEd2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_9Q2TEFhtEd2aHsyOaYt_3g" type="4001"/>
@@ -58,7 +49,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_9Q1sBFhtEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_9Q1sBVhtEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_9Q1sAFhtEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_9Q1sBlhtEd2aHsyOaYt_3g" x="576" y="72"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_9Q1sBlhtEd2aHsyOaYt_3g" x="468" y="72"/>
       </children>
       <children xmi:type="notation:Node" xmi:id="_BdD00FhuEd2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_BdD01lhuEd2aHsyOaYt_3g" type="4001"/>
@@ -67,7 +58,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_BdD001huEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_BdD01FhuEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_BdDNwVhuEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_BdD01VhuEd2aHsyOaYt_3g" x="648"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_BdD01VhuEd2aHsyOaYt_3g" x="540"/>
       </children>
       <children xmi:type="notation:Node" xmi:id="_D-J4kFhuEd2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_D-KfoFhuEd2aHsyOaYt_3g" type="4001"/>
@@ -76,7 +67,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_D-J4k1huEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_D-J4lFhuEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_D-IqcVhuEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_D-J4lVhuEd2aHsyOaYt_3g" x="816" y="132"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_D-J4lVhuEd2aHsyOaYt_3g" x="708" y="132"/>
       </children>
       <children xmi:type="notation:Node" xmi:id="_T7jwcFhuEd2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_T7kXgFhuEd2aHsyOaYt_3g" type="4001"/>
@@ -85,7 +76,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_T7jwc1huEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_T7jwdFhuEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_T7iiUVhuEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_T7jwdVhuEd2aHsyOaYt_3g" x="432" y="120"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_T7jwdVhuEd2aHsyOaYt_3g" x="324" y="120"/>
       </children>
       <children xmi:type="notation:Node" xmi:id="_lVLHolhuEd2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_lVLuslhuEd2aHsyOaYt_3g" type="4001"/>
@@ -148,7 +139,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_fHLpc1hwEd2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_fHLpdFhwEd2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_fHKbUVhwEd2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_fHLpdVhwEd2aHsyOaYt_3g" x="648" y="120"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_fHLpdVhwEd2aHsyOaYt_3g" x="540" y="120"/>
       </children>
       <children xmi:type="notation:Node" xmi:id="_tTzt8Fh1Ed2aHsyOaYt_3g" type="2001">
         <children xmi:type="notation:Node" xmi:id="_tT0VAFh1Ed2aHsyOaYt_3g" type="4001"/>
@@ -157,7 +148,7 @@
         <styles xmi:type="notation:FillStyle" xmi:id="_tTzt81h1Ed2aHsyOaYt_3g"/>
         <styles xmi:type="notation:LineStyle" xmi:id="_tTzt9Fh1Ed2aHsyOaYt_3g" lineColor="0"/>
         <element xmi:type="bpmn:Activity" href="airticket.bpmn#_tTzG4Fh1Ed2aHsyOaYt_3g"/>
-        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_tTzt9Vh1Ed2aHsyOaYt_3g" x="804"/>
+        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_tTzt9Vh1Ed2aHsyOaYt_3g" x="696"/>
       </children>
       <styles xmi:type="notation:DrawerStyle" xmi:id="_dhSKAVhtEd2aHsyOaYt_3g"/>
       <styles xmi:type="notation:SortingStyle" xmi:id="_dhSKAlhtEd2aHsyOaYt_3g"/>
@@ -174,7 +165,7 @@
   <styles xmi:type="notation:GuideStyle" xmi:id="_iZDcIlhrEd2aHsyOaYt_3g"/>
   <styles xmi:type="notation:DescriptionStyle" xmi:id="_iZDcI1hrEd2aHsyOaYt_3g"/>
   <element xmi:type="bpmn:BpmnDiagram" href="airticket.bpmn#_iYxIQFhrEd2aHsyOaYt_3g"/>
-  <edges xmi:type="notation:Edge" xmi:id="_iyzuAFhtEd2aHsyOaYt_3g" type="3001" source="_huUyMFhtEd2aHsyOaYt_3g" target="_iyQUYFhtEd2aHsyOaYt_3g">
+  <edges xmi:type="notation:Edge" xmi:id="_iyzuAFhtEd2aHsyOaYt_3g" type="3001" source="_huUyMFhtEd2aHsyOaYt_3g" target="_lMmP4FhtEd2aHsyOaYt_3g">
     <children xmi:type="notation:Node" xmi:id="_iy0VFFhtEd2aHsyOaYt_3g" type="4012">
       <styles xmi:type="notation:FillStyle" xmi:id="_iy0VFVhtEd2aHsyOaYt_3g" fillColor="16776959"/>
       <styles xmi:type="notation:LineStyle" xmi:id="_iy0VFlhtEd2aHsyOaYt_3g" lineColor="16776959"/>
@@ -184,20 +175,8 @@
     <styles xmi:type="notation:FontStyle" xmi:id="_iy0VEVhtEd2aHsyOaYt_3g" fontName="Arial"/>
     <styles xmi:type="notation:LineStyle" xmi:id="_iy0VElhtEd2aHsyOaYt_3g" lineColor="0"/>
     <element xmi:type="bpmn:SequenceEdge" href="airticket.bpmn#_iyzG8VhtEd2aHsyOaYt_3g"/>
-    <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_iy0VE1htEd2aHsyOaYt_3g" points="[-15, -13, 33, 28]$[-46, -39, 2, 2]"/>
+    <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_iy0VE1htEd2aHsyOaYt_3g" points="[0, 0, -30, -133]$[15, 0, -15, -133]$[15, 133, -15, 0]$[30, 133, 0, 0]"/>
   </edges>
-  <edges xmi:type="notation:Edge" xmi:id="_lMuywFhtEd2aHsyOaYt_3g" type="3001" source="_iyQUYFhtEd2aHsyOaYt_3g" target="_lMmP4FhtEd2aHsyOaYt_3g">
-    <children xmi:type="notation:Node" xmi:id="_lMvZ0FhtEd2aHsyOaYt_3g" type="4012">
-      <styles xmi:type="notation:FillStyle" xmi:id="_lMvZ0VhtEd2aHsyOaYt_3g" fillColor="16776959"/>
-      <styles xmi:type="notation:LineStyle" xmi:id="_lMvZ0lhtEd2aHsyOaYt_3g" lineColor="16776959"/>
-      <layoutConstraint xmi:type="notation:Location" xmi:id="_lMvZ01htEd2aHsyOaYt_3g" y="-10"/>
-    </children>
-    <styles xmi:type="notation:RoutingStyle" xmi:id="_lMuywVhtEd2aHsyOaYt_3g" routing="Rectilinear" smoothness="Normal" closestDistance="true"/>
-    <styles xmi:type="notation:FontStyle" xmi:id="_lMuywlhtEd2aHsyOaYt_3g" fontName="Arial"/>
-    <styles xmi:type="notation:LineStyle" xmi:id="_lMuyw1htEd2aHsyOaYt_3g" lineColor="0"/>
-    <element xmi:type="bpmn:SequenceEdge" href="airticket.bpmn#_lMqhUFhtEd2aHsyOaYt_3g"/>
-    <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_lMuyxFhtEd2aHsyOaYt_3g" points="[-53, -11, 130, 26]$[-181, -37, 2, 0]"/>
-  </edges>
   <edges xmi:type="notation:Edge" xmi:id="_rsUFUFhtEd2aHsyOaYt_3g" type="3001" source="_lMmP4FhtEd2aHsyOaYt_3g" target="_rsRCAFhtEd2aHsyOaYt_3g">
     <children xmi:type="notation:Node" xmi:id="_rsUsYFhtEd2aHsyOaYt_3g" type="4012">
       <styles xmi:type="notation:FillStyle" xmi:id="_rsUsYVhtEd2aHsyOaYt_3g" fillColor="16776959"/>
@@ -306,7 +285,7 @@
     <element xmi:type="bpmn:SequenceEdge" href="airticket.bpmn#_Ypm-gVhvEd2aHsyOaYt_3g"/>
     <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_YpnllFhvEd2aHsyOaYt_3g" points="[-24, -2, 915, 73]$[-937, -75, 2, 0]"/>
   </edges>
-  <edges xmi:type="notation:Edge" xmi:id="_1UX50FhvEd2aHsyOaYt_3g" type="3001" source="_D-J4kFhuEd2aHsyOaYt_3g" target="_iyQUYFhtEd2aHsyOaYt_3g">
+  <edges xmi:type="notation:Edge" xmi:id="_1UX50FhvEd2aHsyOaYt_3g" type="3001" source="_D-J4kFhuEd2aHsyOaYt_3g" target="_lMmP4FhtEd2aHsyOaYt_3g">
     <children xmi:type="notation:Node" xmi:id="_1UYg4FhvEd2aHsyOaYt_3g" type="4012">
       <styles xmi:type="notation:FillStyle" xmi:id="_1UYg4VhvEd2aHsyOaYt_3g" fillColor="16776959"/>
       <styles xmi:type="notation:LineStyle" xmi:id="_1UYg4lhvEd2aHsyOaYt_3g" lineColor="16776959"/>
@@ -316,7 +295,7 @@
     <styles xmi:type="notation:FontStyle" xmi:id="_1UX50lhvEd2aHsyOaYt_3g" fontName="Arial"/>
     <styles xmi:type="notation:LineStyle" xmi:id="_1UX501hvEd2aHsyOaYt_3g" lineColor="0"/>
     <element xmi:type="bpmn:SequenceEdge" href="airticket.bpmn#_1UWrsVhvEd2aHsyOaYt_3g"/>
-    <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_1UX51FhvEd2aHsyOaYt_3g" points="[-25, 0, 703, -15]$[-781, 37, -53, 22]"/>
+    <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_1UX51FhvEd2aHsyOaYt_3g" points="[0, 0, 781, 60]$[0, 52, 781, 112]$[-797, 52, -16, 112]$[-797, -60, -16, 0]$[-781, -60, 0, 0]"/>
   </edges>
   <edges xmi:type="notation:Edge" xmi:id="_Fj6qkFhwEd2aHsyOaYt_3g" type="3001" source="_VtE78FhvEd2aHsyOaYt_3g" target="_Fj1yEFhwEd2aHsyOaYt_3g">
     <children xmi:type="notation:Node" xmi:id="_Fj6qlVhwEd2aHsyOaYt_3g" type="4012">
@@ -406,7 +385,7 @@
     <children xmi:type="notation:Node" xmi:id="_waFiYFh1Ed2aHsyOaYt_3g" type="4012">
       <styles xmi:type="notation:FillStyle" xmi:id="_waFiYVh1Ed2aHsyOaYt_3g" fillColor="16776959"/>
       <styles xmi:type="notation:LineStyle" xmi:id="_waFiYlh1Ed2aHsyOaYt_3g" lineColor="16776959"/>
-      <layoutConstraint xmi:type="notation:Location" xmi:id="_waFiY1h1Ed2aHsyOaYt_3g" y="40"/>
+      <layoutConstraint xmi:type="notation:Location" xmi:id="_waFiY1h1Ed2aHsyOaYt_3g" y="-10"/>
     </children>
     <styles xmi:type="notation:RoutingStyle" xmi:id="_waE7UVh1Ed2aHsyOaYt_3g" routing="Rectilinear" smoothness="Normal" closestDistance="true"/>
     <styles xmi:type="notation:FontStyle" xmi:id="_waE7Ulh1Ed2aHsyOaYt_3g" fontName="Arial"/>




More information about the jbpm-commits mailing list