Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: aa2c41c1beb308a88da07089649e1bb368fa0b6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<!--	Generated by Teneo on Fri Sep 22 14:57:06 CEST 2006 -->
<hibernate-mapping>
	<class entity-name="Book" abstract="false" lazy="false" discriminator-value="Book" table="`book`">
		<id type="long" name="myID" column="myID">
			<generator class="native"/>
		</id>
		<discriminator column="`dtype`" type="string"/>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
		<property name="title" type="java.lang.String" lazy="false" column="`title`" not-null="true"/>
		<property name="pages" type="int" lazy="false" column="`pages`" not-null="false"/>
		<property name="category" lazy="false" access="org.eclipse.emf.teneo.hibernate.mapping.EFeatureAccessor" column="`categ`" not-null="false" unique="false">
			<type name="org.eclipse.emf.teneo.hibernate.mapping.ENumUserIntegerType">
				<param name="enumClass">org.eclipse.emf.teneo.samples.emf.sample.library.BookCategory</param>
			</type>
		</property>
		<many-to-one name="author" entity-name="Writer" cascade="merge,persist,save-update,lock,refresh" lazy="false" insert="true" update="true" not-null="false">
			<column not-null="false" unique="false" name="`au_id`"/>
		</many-to-one>
	</class>
	<class entity-name="Library" abstract="false" lazy="false" discriminator-value="Library" table="`libra`">
		<id type="long" name="myID" column="myID">
			<generator class="native"/>
		</id>
		<discriminator column="`dtype`" type="string"/>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
		<property name="name" type="java.lang.String" lazy="false" column="`name`" not-null="true"/>
		<list name="writers" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`wr_id`" not-null="false" unique="false"/>
			</key>
			<list-index column="`l_idx`"/>
			<one-to-many entity-name="Writer"/>
		</list>
		<list name="books" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`bo_id`" not-null="false" unique="false"/>
			</key>
			<list-index column="`l_idx`"/>
			<one-to-many entity-name="Book"/>
		</list>
	</class>
	<class entity-name="Writer" abstract="false" lazy="false" discriminator-value="Writer" table="`write`">
		<id type="long" name="myID" column="myID">
			<generator class="native"/>
		</id>
		<discriminator column="`dtype`" type="string"/>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
		<property name="name" type="java.lang.String" lazy="false" column="`name`" not-null="true"/>
		<list name="books" lazy="true" cascade="merge,persist,save-update,lock,refresh">
			<key update="true">
				<column name="`au_id`" not-null="false" unique="false"/>
			</key>
			<list-index column="`w_idx`"/>
			<one-to-many entity-name="Book"/>
		</list>
	</class>
</hibernate-mapping>

Back to the top