Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/CompositeIdAction_mysql_a_o_hibernate.hbm.xml')
-rwxr-xr-xtests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/CompositeIdAction_mysql_a_o_hibernate.hbm.xml39
1 files changed, 0 insertions, 39 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/CompositeIdAction_mysql_a_o_hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/CompositeIdAction_mysql_a_o_hibernate.hbm.xml
deleted file mode 100755
index f75b850a1..000000000
--- a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/CompositeIdAction_mysql_a_o_hibernate.hbm.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?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.compositeid.impl.PersonImpl" entity-name="Person" abstract="false" lazy="false" discriminator-value="Person" table="`person`">
- <meta attribute="eclassName">Person</meta>
- <meta attribute="epackage">http:///org/elver/samples/emf/annotations/compositeid.ecore</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="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler">
- <meta attribute="syntheticVersion">true</meta>
- </version>
- </class>
- <subclass name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.impl.ParentImpl" entity-name="Parent" abstract="false" lazy="false" extends="Person" discriminator-value="Parent">
- <meta attribute="eclassName">Parent</meta>
- <meta attribute="epackage">http:///org/elver/samples/emf/annotations/compositeid.ecore</meta>
- <list name="children" lazy="true" cascade="merge,persist,save-update,lock,refresh">
- <key update="true" foreign-key="parent_children">
- <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>
- </subclass>
- <subclass name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.impl.ChildImpl" entity-name="Child" abstract="false" lazy="false" extends="Person" discriminator-value="Child">
- <meta attribute="eclassName">Child</meta>
- <meta attribute="epackage">http:///org/elver/samples/emf/annotations/compositeid.ecore</meta>
- </subclass>
-</hibernate-mapping> \ No newline at end of file

Back to the top