Salome HOME
cba98a2001d67189d06e49216a4ad0c888656d14
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / som / Publication.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   -
5   - @author    Daniel Brunier-Coulin
6   - @copyright OPEN CASCADE 2012
7   -->
8
9 <hibernate-mapping>
10
11   <class name="org.splat.som.Publication" table="doctag" lazy="false">
12   
13 <!-- Properties inherited Persistent
14   -->
15     <id name="rid" column="rid" access="field">
16       <generator class="increment"/>
17     </id>
18
19 <!-- Publication properties
20   -->
21     <!-- Document       mydoc -->    
22     <many-to-one  name="mydoc" column="doc"   access="field" not-null="true" />
23     
24     <!-- ProjectElement owner -->    
25     <many-to-one  name="owner" column="owner" access="field" not-null="true" />
26   
27     <!-- char isnew -->
28     <property     name="isnew" column="isnew" access="field" not-null="true" />    
29
30   </class>
31
32 </hibernate-mapping>