[jbpm-commits] JBoss JBPM SVN: r4663 - in jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail: template and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Apr 29 04:18:54 EDT 2009


Author: tom.baeyens at jboss.com
Date: 2009-04-29 04:18:54 -0400 (Wed, 29 Apr 2009)
New Revision: 4663

Modified:
   jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/inline/process.jpdl.xml
   jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/template/process.jpdl.xml
Log:
changed activity names in mail examples from camel case to lower case with spaces

Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/inline/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/inline/process.jpdl.xml	2009-04-29 08:07:56 UTC (rev 4662)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/inline/process.jpdl.xml	2009-04-29 08:18:54 UTC (rev 4663)
@@ -3,16 +3,16 @@
 <process name="InlineMail">
 
   <start>
-    <transition to="SendMemo"/>
+    <transition to="send memo"/>
   </start>
         
-  <mail name="SendMemo">
+  <mail name="send memo">
      <to addresses='dilbert at office, alice at work, dogbert at house'/>
      <subject>bureaucracy</subject>
      <text>Order http://example.com/order/#{orderId} is stalled.</text>
-     <transition to="End" />
+     <transition to="end" />
   </mail>
   
-  <state name="End"/>
+  <state name="end"/>
 
 </process>
\ No newline at end of file

Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/template/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/template/process.jpdl.xml	2009-04-29 08:07:56 UTC (rev 4662)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/template/process.jpdl.xml	2009-04-29 08:18:54 UTC (rev 4663)
@@ -3,13 +3,13 @@
 <process name="TemplateMail">
 
   <start>
-    <transition to="SendMemo" />
+    <transition to="send memo" />
   </start>
 
-  <mail name="SendMemo" template="MemoTemplate">
-     <transition to="End" />
+  <mail name="send memo" template="MemoTemplate">
+     <transition to="end" />
   </mail>
   
-  <state name="End"/>
+  <state name="end"/>
 
 </process>
\ No newline at end of file




More information about the jbpm-commits mailing list