riftsaw SVN: r998 - branches/ODE/RiftSaw-ODE-trunk/dao-jpa/src/main/riftsaw.
by riftsaw-commits@lists.jboss.org
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>
14 years, 2 months