]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.hibernate/src/main/resources/org/argeo/slc/hibernate/test/SimpleResultPart.hbm.xml
Refactor package names
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.hibernate / src / main / resources / org / argeo / slc / hibernate / test / SimpleResultPart.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.test">
6 <class name="SimpleResultPart" table="SIMPLE_RESULT_PART">
7 <cache usage="nonstrict-read-write" />
8 <id name="tid" column="T_ID">
9 <generator class="native" />
10 </id>
11 <property name="status" column="STATUS" not-null="true" />
12 <property name="message" column="MESSAGE" not-null="true" />
13 <property name="exceptionMessage" column="EXCEPTION_MESSAGE"
14 type="text" not-null="false" lazy="true" />
15 <property name="testRunUuid" column="TEST_RUN_UUID"
16 not-null="false" />
17 </class>
18 </hibernate-mapping>