Author: tom.baeyens(a)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@office, alice@work, dogbert@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