~slub.team/goobi-production/1.7

« back to all changes in this revision

Viewing changes to src/de/sub/goobi/beans/Prozess.hbm.xml

  • Committer: Ralf Claussnitzer
  • Date: 2011-12-14 11:51:57 UTC
  • mfrom: (5.2.10 bug-754438)
  • Revision ID: ralf.claussnitzer@slub-dresden.de-20111214115157-x9mcctf8bax4u8sw
lp:754438 fixes misspelled package names

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
<hibernate-mapping>
7
7
 
8
 
        <class name="de.sub.goobi.Beans.Prozess" table="prozesse">
 
8
        <class name="de.sub.goobi.beans.Prozess" table="prozesse">
9
9
                <id name="id" column="ProzesseID" type="integer">
10
10
                        <generator class="native"/>
11
11
                </id>
23
23
                <property name="erstellungsdatum" column="erstellungsdatum" type="timestamp"/>
24
24
                <property name="wikifield" column="wikifield" type="string"/>
25
25
                
26
 
                <many-to-one name="projekt" class="de.sub.goobi.Beans.Projekt" column="ProjekteID"/>
 
26
                <many-to-one name="projekt" class="de.sub.goobi.beans.Projekt" column="ProjekteID"/>
27
27
                
28
 
                <many-to-one name="regelsatz" class="de.sub.goobi.Beans.Regelsatz" column="MetadatenKonfigurationID"/>
 
28
                <many-to-one name="regelsatz" class="de.sub.goobi.beans.Regelsatz" column="MetadatenKonfigurationID"/>
29
29
                
30
30
                <set name="schritte" cascade="all,delete-orphan" inverse="true" order-by="Reihenfolge" lazy="true">
31
31
                        <key column="ProzesseID"/>
32
 
                        <one-to-many class="de.sub.goobi.Beans.Schritt"/>
 
32
                        <one-to-many class="de.sub.goobi.beans.Schritt"/>
33
33
                </set>
34
34
                
35
35
                <set name="vorlagen" cascade="all,delete-orphan" inverse="true" lazy="true">
36
36
                        <key column="ProzesseID"/>
37
 
                        <one-to-many class="de.sub.goobi.Beans.Vorlage"/>
 
37
                        <one-to-many class="de.sub.goobi.beans.Vorlage"/>
38
38
                </set>
39
39
                
40
40
                <set name="werkstuecke" cascade="all,delete-orphan" inverse="true" lazy="true">
41
41
                        <key column="ProzesseID"/>
42
 
                        <one-to-many class="de.sub.goobi.Beans.Werkstueck"/>
 
42
                        <one-to-many class="de.sub.goobi.beans.Werkstueck"/>
43
43
                </set>
44
44
                
45
45
                <set name="eigenschaften" cascade="all,delete-orphan" inverse="true" order-by="titel">
46
46
                        <key column="prozesseID"/>
47
 
                        <one-to-many class="de.sub.goobi.Beans.Prozesseigenschaft"/>
 
47
                        <one-to-many class="de.sub.goobi.beans.Prozesseigenschaft"/>
48
48
                </set>
49
49
                
50
50
                <set name="history" cascade="all,delete-orphan" inverse="true" order-by="date">
51
51
                        <key column="processID"/>
52
 
                        <one-to-many class="de.sub.goobi.Beans.HistoryEvent"/>
 
52
                        <one-to-many class="de.sub.goobi.beans.HistoryEvent"/>
53
53
                </set>
54
54
                
55
55
        </class>