Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cb4ac9927ad4ab471ea20f14d0e8996db10dcbdf (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?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">

<hibernate-mapping auto-import="false">
	<class name="org.eclipse.emf.teneo.samples.emf.annotations.joincolumns.impl.PersonImpl" entity-name="Person" abstract="false" lazy="false" discriminator-value="Person" table="`PERSON`">
		<meta attribute="eclassName" inherit="false">Person</meta>
		<meta attribute="epackage" inherit="false">http://www.eclipse.org/emf/teneo/samples/emf/annotations/joincolumns</meta>
		<composite-id class="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.PersonID" mapped="true">
			<key-property name="firstName" type="java.lang.String">
				<column not-null="true" unique="false" name="`FIRSTNAME`"/>
			</key-property>
			<key-property name="lastName" type="java.lang.String">
				<column not-null="true" unique="false" name="`LASTNAME`"/>
			</key-property>
		</composite-id>
		<discriminator type="string">
			<column name="`DTYPE`" index="PERSONDTYPE" length="255" not-null="true"/>
		</discriminator>
		<version name="myversion" column="myversion" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler">
			<meta attribute="syntheticVersion" inherit="false">true</meta>
		</version>
		<bag name="friends" lazy="true" cascade="merge,persist,save-update,lock,refresh" table="`PERSON_PERSON`">
			<key update="true">
				<column name="`PERSON_FRIENDS_FIRSTNAME`" unique="false"/>
				<column name="`PERSON_FRIENDS_LASTNAME`" unique="false"/>
			</key>
			<many-to-many entity-name="Person" unique="false" foreign-key="PERSON_FRIENDS">
				<column name="`PERSON_OPPOSITEFRIENDS_FIRSTNAME`" not-null="true" unique="false"/>
				<column name="`PERSON_OPPOSITEFRIENDS_LASTNAME`" not-null="true" unique="false"/>
			</many-to-many>
		</bag>
		<bag name="oppositeFriends" lazy="true" cascade="merge,persist,save-update,lock,refresh" inverse="true" table="`PERSON_PERSON`">
			<key update="true">
				<column name="`PERSON_OPPOSITEFRIENDS_FIRSTNAME`" unique="false"/>
				<column name="`PERSON_OPPOSITEFRIENDS_LASTNAME`" unique="false"/>
			</key>
			<many-to-many entity-name="Person" unique="false" foreign-key="PERSON_OPPOSITEFRIENDS">
				<column name="`PERSON_FRIENDS_FIRSTNAME`" not-null="true" unique="false"/>
				<column name="`PERSON_FRIENDS_LASTNAME`" not-null="true" unique="false"/>
			</many-to-many>
		</bag>
	</class>
	<subclass name="org.eclipse.emf.teneo.samples.emf.annotations.joincolumns.impl.ParentImpl" entity-name="Parent" abstract="false" lazy="false" extends="Person" discriminator-value="Parent">
		<meta attribute="eclassName" inherit="false">Parent</meta>
		<meta attribute="epackage" inherit="false">http://www.eclipse.org/emf/teneo/samples/emf/annotations/joincolumns</meta>
		<list name="children" lazy="true" cascade="all,delete-orphan">
			<key update="true" foreign-key="PARENT_CHILDREN">
				<column name="`MYPARENTFIRSTNAME`" unique="false"/>
				<column name="`MYPARENTLASTNAME`" unique="false"/>
			</key>
			<list-index column="`PARENT_CHILDREN_IDX`"/>
			<one-to-many entity-name="Child"/>
		</list>
	</subclass>
	<subclass name="org.eclipse.emf.teneo.samples.emf.annotations.joincolumns.impl.ChildImpl" entity-name="Child" abstract="false" lazy="false" extends="Person" discriminator-value="Child">
		<meta attribute="eclassName" inherit="false">Child</meta>
		<meta attribute="epackage" inherit="false">http://www.eclipse.org/emf/teneo/samples/emf/annotations/joincolumns</meta>
	</subclass>
	<class name="org.eclipse.emf.teneo.samples.emf.annotations.joincolumns.impl.HouseImpl" entity-name="House" abstract="false" lazy="false" discriminator-value="House" table="`HOUSE`">
		<meta attribute="eclassName" inherit="false">House</meta>
		<meta attribute="epackage" inherit="false">http://www.eclipse.org/emf/teneo/samples/emf/annotations/joincolumns</meta>
		<id type="long" name="e_id" column="e_id" access="org.eclipse.emf.teneo.hibernate.mapping.identifier.IdentifierPropertyHandler">
			<meta attribute="syntheticId" inherit="false">true</meta>
			<generator class="native"/>
		</id>
		<discriminator type="string">
			<column name="`DTYPE`" index="HOUSEDTYPE" length="255" not-null="true"/>
		</discriminator>
		<version name="myversion" column="myversion" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler">
			<meta attribute="syntheticVersion" inherit="false">true</meta>
		</version>
		<many-to-one name="owner" entity-name="Parent" lazy="false" cascade="merge,persist,save-update,lock,refresh" foreign-key="HOUSE_OWNER" insert="true" update="true" not-null="false">
			<column not-null="false" unique="false" name="`PARENT_OWNER_FIRSTNAME`"/>
			<column not-null="false" unique="false" name="`PARENT_OWNER_LASTNAME`"/>
		</many-to-one>
		<list name="visitors" table="`HOUSE_PERSON`" lazy="true" cascade="persist,merge,refresh,save-update,lock">
			<key update="true">
				<column name="`RIGHTCOLUMN`" unique="false"/>
			</key>
			<list-index column="`HOUSE_VISITORS_IDX`"/>
			<many-to-many entity-name="Person" unique="true" foreign-key="HOUSE_VISITORS">
				<column name="`PERSON_FIRSTNAME`" unique="false"/>
				<column name="`PERSON_LASTNAME`" unique="false"/>
			</many-to-many>
		</list>
	</class>
</hibernate-mapping>

Back to the top