]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.hibernate/src/main/resources/org/argeo/slc/hibernate/process/SlcExecutionStep.hbm.xml
Make attachments more robust
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.hibernate / src / main / resources / org / argeo / slc / hibernate / process / SlcExecutionStep.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.process">
6 <class name="SlcExecutionStep" table="SLC_EXECUTION_STEP">
7 <cache usage="nonstrict-read-write" />
8
9 <id name="uuid" column="UUID" />
10 <property name="type" column="TYPE" />
11 <property name="begin" column="BEGIN" />
12
13 <list name="logLines" cascade="all" lazy="false"
14 table="SLC_EXECUTION_STEP_LOG_LINE">
15 <cache usage="nonstrict-read-write" />
16 <key column="SLC_EXECUTION_STEP_ID" />
17 <list-index column="INDX" />
18 <element column="LOG_LINE" type="text" />
19 </list>
20 </class>
21 </hibernate-mapping>