Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 677848f55ea8f4c79fdbda05472efd7eadeb2e31 (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
<?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.issues.bz284859.impl.BarImpl" entity-name="Bar" abstract="false" lazy="false" discriminator-value="Bar" table="`bar`">
		<meta attribute="eclassName">Bar</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/issues/bz284859</meta>
		<id name="name" type="java.lang.String">
			<column not-null="true" unique="false" name="`name`"/>
		</id>
		<discriminator type="string">
			<column name="dtype" index="bardtype" 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>
	<class name="org.eclipse.emf.teneo.samples.issues.bz284859.impl.FooImpl" entity-name="Foo" abstract="false" lazy="false" discriminator-value="Foo" table="`foo`">
		<meta attribute="eclassName">Foo</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/issues/bz284859</meta>
		<id name="name" type="java.lang.String">
			<column not-null="true" unique="false" name="`name`"/>
		</id>
		<discriminator type="string">
			<column name="dtype" index="foodtype" 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.issues.bz284859.impl.BarDerivedImpl" entity-name="BarDerived" abstract="false" lazy="false" extends="Bar" discriminator-value="BarDerived">
		<meta attribute="eclassName">BarDerived</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/issues/bz284859</meta>
	</subclass>
</hibernate-mapping>

Back to the top