~intranda/goobi-production/intranda1.7

« back to all changes in this revision

Viewing changes to WEB-INF/classes/de/sub/goobi/Beans/HistoryEvent.hbm.xml

  • Committer: steffen.hankiewicz at intranda
  • Date: 2011-07-05 12:54:18 UTC
  • Revision ID: steffen.hankiewicz@intranda.com-20110705125418-te8hmvrm6lwwt074
classes deleted

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
6
 
<hibernate-mapping>
7
 
 
8
 
        <class name="de.sub.goobi.Beans.HistoryEvent" table="history">
9
 
                <id name="id" column="historyid" type="integer">
10
 
                        <generator class="native" />
11
 
                </id>
12
 
 
13
 
                <property name="numericValue" column="numericvalue" type="double" />
14
 
                <property name="stringValue" column="stringvalue" type="string" />
15
 
                <property name="type" column="type" type="integer" />
16
 
                <property name="date" column="date" type="timestamp" />
17
 
                                
18
 
                <many-to-one name="process" class="de.sub.goobi.Beans.Prozess" column="processID" not-found="ignore"/>
19
 
                
20
 
        </class>
21
 
 
22
 
</hibernate-mapping>