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 / som / File.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   <union-subclass name="org.splat.dal.bo.som.File" extends="org.splat.dal.bo.kernel.Persistent" table="file" lazy="false">
12
13 <!-- File properties
14   -->
15     <!-- String  format -->
16     <property name="format" column="format" access="field" not-null="true" />
17
18     <!-- String  path   -->
19     <property name="path"   column="path"   access="field" not-null="true" />
20     
21     <!-- String  date   -->
22     <property name="date"   column="date"   access="field" not-null="true" />
23
24   </union-subclass>
25   
26 </hibernate-mapping>