]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.hibernate/src/main/resources/org/argeo/slc/hibernate/test/TestRunDescriptor.hbm.xml
Refactor package names
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.hibernate / src / main / resources / org / argeo / slc / hibernate / test / TestRunDescriptor.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.test">
6 <class name="TestRunDescriptor" table="TEST_RUN_DESCRIPTOR">
7 <cache usage="nonstrict-read-write" />
8 <id name="testRunUuid" column="TEST_RUN_UUID" />
9 <property name="slcExecutionUuid" column="SLC_EXEC_UUID"
10 not-null="false" />
11 <property name="slcExecutionStepUuid"
12 column="SLC_EXEC_STEP_UUID" not-null="false" />
13 <property name="testResultUuid" column="TEST_RESULT_UUID"
14 not-null="false" />
15 <property name="deployedSytemId" column="DEPLOYED_SYSTEM_ID"
16 not-null="false" />
17 </class>
18 </hibernate-mapping>