[jbpm-commits] JBoss JBPM SVN: r5982 - in jbpm4/trunk/modules: devguide/src/main/docbook/en/modules and 1 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Dec 17 16:30:11 EST 2009


Author: jbarrez
Date: 2009-12-17 16:30:10 -0500 (Thu, 17 Dec 2009)
New Revision: 5982

Added:
   jbpm4/trunk/modules/devguide/src/main/docbook/en/images/bpmn2.manual.task.png
Modified:
   jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch03-Bpmn2.xml
   jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/bpmn/task/service/service_task_java.bpmn.xml
Log:
JBPM-2664: documented manual task

Added: jbpm4/trunk/modules/devguide/src/main/docbook/en/images/bpmn2.manual.task.png
===================================================================
(Binary files differ)


Property changes on: jbpm4/trunk/modules/devguide/src/main/docbook/en/images/bpmn2.manual.task.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Modified: jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch03-Bpmn2.xml
===================================================================
--- jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch03-Bpmn2.xml	2009-12-17 20:49:49 UTC (rev 5981)
+++ jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch03-Bpmn2.xml	2009-12-17 21:30:10 UTC (rev 5982)
@@ -582,6 +582,29 @@
       </para> 
     
     </section>  
+    
+    <section id="manualTask">
+    
+      <title>Task: Manual task</title>
+      
+      <para>
+         <mediaobject><imageobject><imagedata align="center" fileref="images/bpmn2.manual.task.png"/></imageobject></mediaobject>
+         A manual task is a task that is performed by an external actor, but without the aid of 
+         a BPM system or a service that is invoked. In the real world, examples are plenty:
+         the installation of telephone system, sending of a letter using regular mail, calling 
+         a customer by phone, etc.
+         <programlisting>
+&lt;manualTask id=&quot;myManualTask&quot; name=&quot;Call customer&quot; /&gt;         
+         </programlisting>
+      </para>
+      
+      <para>
+        The purpose of the manual task is more documentation-wise, as it has no meaning for
+        execution on a process engine. As such, the process engine will simply pass through
+        a manual task when it encounters one.
+      </para>
+    
+    </section>
   
   </section> <!-- End of basic constructs section -->
   

Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/bpmn/task/service/service_task_java.bpmn.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/bpmn/task/service/service_task_java.bpmn.xml	2009-12-17 20:49:49 UTC (rev 5981)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/bpmn/task/service/service_task_java.bpmn.xml	2009-12-17 21:30:10 UTC (rev 5982)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <bpmn:definitions id="ServiceTaskJava"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://schema.omg.org/spec/BPMN/2.0 ../../../../../../../bpmn/src/main/resources/BPMN20.xsd"
+	xsi:schemaLocation="http://schema.omg.org/spec/BPMN/2.0 ../../../../../../../../../../bpmn/src/main/resources/BPMN20.xsd"
 	xmlns:bpmn="http://schema.omg.org/spec/BPMN/2.0" typeLanguage="http://www.w3.org/2001/XMLSchema"
 	expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://sample.bpmn.camunda.com/"
 	xmlns:jbpm="http://jbpm.org/4.0/bpmn2">



More information about the jbpm-commits mailing list