Salome HOME
Mapping is fixed. Relation in the mapping is inherited from Persistent now. Versionin...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / bo / kernel / Persistent.hbm.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >
3 <!--
4   - Mapping of the primary key common to all Persistent objects.
5   -
6   -
7   - @author    Daniel Brunier-Coulin
8   - @copyright OPEN CASCADE 2012
9   -->
10
11 <hibernate-mapping>
12   <class name="org.splat.dal.bo.kernel.Persistent" abstract="true">
13         <id name="rid" column="rid" access="field" type="long">
14         <generator class="org.hibernate.id.enhanced.SequenceStyleGenerator">
15                 <param name="sequence_name">persistent_id</param>
16                 <param name="initial_value">1000</param>
17         </generator>
18         </id>
19   </class>
20 </hibernate-mapping>