]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.hibernate/src/main/resources/org/argeo/slc/hibernate/structure/SimpleSElement.hbm.xml
Remove unused DAOs
[gpl/argeo-slc.git] / org.argeo.slc.hibernate / src / main / resources / org / argeo / slc / hibernate / structure / SimpleSElement.hbm.xml
1 <?xml version="1.0"?>
2 <!DOCTYPE hibernate-mapping PUBLIC
3 "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4 "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
5 <hibernate-mapping package="org.argeo.slc.core.structure">
6 <class name="SimpleSElement" table="SIMPLE_SELEMENT">
7 <id name="tid" column="T_ID">
8 <generator class="native" />
9 </id>
10 <property name="label" column="LABEL" not-null="true" />
11 <map name="tags" table="SIMPLE_SELEMENT_TAGS" cascade="all"
12 lazy="false" sort="natural">
13 <key column="PARENT_ID" />
14 <map-key type="string" column="NAME" />
15 <element type="string" column="VALUE" />
16 </map>
17 </class>
18 </hibernate-mapping>