blob: c81d9393e2d7899fe557647aeb3a3794e39ba2ef [file] [log] [blame]
<?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 Wed Jul 18 20:38:53 CEST 2007 -->
<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" lazy="false" insert="false" update="false" not-null="false">
<column not-null="false" unique="false" name="`address_person_e_id`"/>
</many-to-one>
</class>
</hibernate-mapping>