[riftsaw-commits] riftsaw SVN: r998 - branches/ODE/RiftSaw-ODE-trunk/dao-jpa/src/main/riftsaw.

riftsaw-commits at lists.jboss.org riftsaw-commits at lists.jboss.org
Thu Sep 30 22:36:45 EDT 2010


Author: jeff.yuchang
Date: 2010-09-30 22:36:43 -0400 (Thu, 30 Sep 2010)
New Revision: 998

Modified:
   branches/ODE/RiftSaw-ODE-trunk/dao-jpa/src/main/riftsaw/riftsaw-orm.xml
Log:
* add custom sequence for bpaf models.


Modified: branches/ODE/RiftSaw-ODE-trunk/dao-jpa/src/main/riftsaw/riftsaw-orm.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/dao-jpa/src/main/riftsaw/riftsaw-orm.xml	2010-09-29 08:38:12 UTC (rev 997)
+++ branches/ODE/RiftSaw-ODE-trunk/dao-jpa/src/main/riftsaw/riftsaw-orm.xml	2010-10-01 02:36:43 UTC (rev 998)
@@ -141,7 +141,25 @@
       </id>
     </attributes>
   </entity>
+
+  <entity class="org.jboss.bpm.monitor.model.bpaf.Event">
+    <attributes>
+      <id name="eventID">
+      	<column name="EID"/>
+        <generated-value generator="bpel_sequence" strategy="AUTO"/>
+      </id>
+    </attributes>
+  </entity>
   
+    <entity class="org.jboss.bpm.monitor.model.bpaf.Tuple">
+    <attributes>
+      <id name="id">
+      	<column name="TID"/>
+        <generated-value generator="bpel_sequence" strategy="AUTO"/>
+      </id>
+    </attributes>
+  </entity>
+  
   <!-- ode-store persistence unit -->
   <entity class="org.apache.ode.dao.jpa.store.ProcessConfPropertyDaoImpl">
     <attributes>



More information about the riftsaw-commits mailing list