[jbpm-commits] JBoss JBPM SVN: r6021 - jbpm4/trunk/modules/api/src/main/resources.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Dec 22 11:59:58 EST 2009


Author: koen.aers at jboss.com
Date: 2009-12-22 11:59:58 -0500 (Tue, 22 Dec 2009)
New Revision: 6021

Modified:
   jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd
Log:
added 'transacted' and 'acknowledge' attributes to 'jms' type

Modified: jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd
===================================================================
--- jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd	2009-12-22 15:38:01 UTC (rev 6020)
+++ jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd	2009-12-22 16:59:58 UTC (rev 6021)
@@ -1315,6 +1315,12 @@
     <attribute name="destination" type="string">
       <annotation><documentation>jndi name of the destination to send the message to</documentation></annotation>
     </attribute>
+    <attribute name="transacted" type="tns:booleanValueType" default="false">
+      <annotation><documentation>indicates whether the message should be sent in a transactional way</documentation></annotation>
+    </attribute>
+    <attribute name="acknowledge" type="tns:acknowledgeType" default="auto">
+      <annotation><documentation>indicates the acknowledgment mode</documentation></annotation>
+    </attribute>
   </complexType>
   
   <complexType name="mailRecipientType">
@@ -1342,7 +1348,15 @@
     </restriction>
   </simpleType>
 
+  <simpleType name="acknowledgeType">
+    <restriction base="string">
+      <enumeration value="auto" />
+      <enumeration value="client" />
+      <enumeration value="dups-ok" />
+    </restriction>
+  </simpleType>
 
+
   <simpleType name="templateType">
     <annotation><documentation>Reference to the email template</documentation></annotation>
     <restriction base="string"></restriction>



More information about the jbpm-commits mailing list