Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 80d87721f89e953105c04386ec8779088e0d8919 (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
<?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 Elver Store tools on Thu Aug 24 21:14:12 CEST 2006 -->
<hibernate-mapping>
	<class entity-name="Person" abstract="false" lazy="false" name="org.eclipse.emf.teneo.samples.emf.annotations.joincolumns.impl.PersonImpl" table="`person`">
		<composite-id class="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.PersonID" mapped="true">
			<key-property name="firstName" type="java.lang.String" column="`firstname`"/>
			<key-property name="lastName" type="java.lang.String" column="`lastname`"/>
		</composite-id>
		<version name="myversion" column="myversion" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
	</class>
	<joined-subclass entity-name="Parent" abstract="false" lazy="false" name="org.eclipse.emf.teneo.samples.emf.annotations.joincolumns.impl.ParentImpl" extends="Person" table="`parent`">
		<key>
			<column name="`person_firstname`"/>
			<column name="`person_lastname`"/>
		</key>
		<list name="children" lazy="true" cascade="merge,persist,save-update,lock,refresh">
			<key update="true">
				<column name="`myparentfirstname`" not-null="false" unique="false"/>
				<column name="`myparentlastname`" not-null="false" unique="false"/>
			</key>
			<list-index column="`parent_children_idx`"/>
			<one-to-many entity-name="Child"/>
		</list>
	</joined-subclass>
	<joined-subclass entity-name="Child" abstract="false" lazy="false" name="org.eclipse.emf.teneo.samples.emf.annotations.joincolumns.impl.ChildImpl" extends="Person" table="`child`">
		<key>
			<column name="`person_firstname`"/>
			<column name="`person_lastname`"/>
		</key>
	</joined-subclass>
</hibernate-mapping>

Back to the top