Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 34462d5506d36b2df362cd88511f233dd0db8895 (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
<?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">
	<typedef name="nameType" class="org.eclipse.emf.teneo.samples.emf.hibernate.usertype.NameType"/>
	<typedef name="usertype.PhoneNumber" class="org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserType">
		<param name="epackage">http://www.elver.org/samples/emf/hibernate/usertype</param>
		<param name="edatatype">PhoneNumber</param>
	</typedef>
	<typedef name="intArrayType" class="org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserType">
		<param name="epackage">http://www.elver.org/samples/emf/hibernate/usertype</param>
		<param name="edatatype">IntArray</param>
	</typedef>
	<class name="org.eclipse.emf.teneo.samples.emf.hibernate.usertype.impl.PersonImpl" entity-name="Person" abstract="false" lazy="false" table="`person`">
		<meta attribute="eclassName">Person</meta>
		<meta attribute="epackage">http://www.elver.org/samples/emf/hibernate/usertype</meta>
		<id type="long" name="e_id" column="e_id" access="org.eclipse.emf.teneo.hibernate.mapping.identifier.IdentifierPropertyHandler">
			<meta attribute="syntheticId">true</meta>
			<generator class="native"/>
		</id>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler">
			<meta attribute="syntheticVersion">true</meta>
		</version>
		<property name="name" lazy="false" insert="true" update="true" not-null="true" unique="false" type="nameType">
			<column not-null="false" unique="false" name="`first_name`"/>
			<column not-null="false" unique="false" name="`last_name`"/>
		</property>
		<property name="numbers" lazy="false" insert="true" update="true" not-null="true" unique="false" type="intArrayType">
			<column not-null="true" unique="false" name="`numbers`"/>
		</property>
		<list name="phoneNumbers" table="`person_phonenumbers`" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`person_phonenumbers_e_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`person_phonenumbers_idx`"/>
			<element type="usertype.PhoneNumber"/>
		</list>
		<property name="emergencyContact" lazy="false" insert="true" update="true" not-null="false" unique="false" type="usertype.PhoneNumber">
			<column not-null="false" unique="false" name="`emergencycontact`"/>
		</property>
		<bag name="addresses" lazy="true" cascade="merge,persist,save-update,lock,refresh">
			<key update="true">
				<column name="`address_person_e_id`" not-null="false" unique="false"/>
			</key>
			<one-to-many entity-name="Address"/>
		</bag>
	</class>
	<class name="org.eclipse.emf.teneo.samples.emf.hibernate.usertype.impl.AddressImpl" entity-name="Address" abstract="false" lazy="false" table="`address`">
		<meta attribute="eclassName">Address</meta>
		<meta attribute="epackage">http://www.elver.org/samples/emf/hibernate/usertype</meta>
		<id type="long" name="e_id" column="e_id" access="org.eclipse.emf.teneo.hibernate.mapping.identifier.IdentifierPropertyHandler">
			<meta attribute="syntheticId">true</meta>
			<generator class="native"/>
		</id>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler">
			<meta attribute="syntheticVersion">true</meta>
		</version>
		<property name="addressInfo" lazy="false" insert="true" update="true" not-null="true" unique="false" type="java.lang.String">
			<column not-null="true" unique="false" name="`addressinfo`"/>
		</property>
		<many-to-one name="person" entity-name="Person" cascade="merge,persist,save-update,lock,refresh" foreign-key="address_person" lazy="false" insert="true" update="true" not-null="false">
			<column not-null="false" unique="false" name="`address_person_e_id`"/>
		</many-to-one>
	</class>
</hibernate-mapping>

Back to the top