Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ba4e3b857a603f42b3a116f2a262dfb0ebdfc2c1 (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
66
67
68
69
70
71
72
73
74
75
<?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.sample.product.impl.ProductTypeImpl" entity-name="ProductType" abstract="false" lazy="false" discriminator-value="ProductType" table="`producttype`">
		<meta attribute="eclassName">ProductType</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/emf/sample/product</meta>
		<id name="id" type="java.lang.String">
			<column not-null="true" unique="false" name="`id`"/>
		</id>
		<discriminator column="`dtype`" type="string"/>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler">
			<meta attribute="syntheticVersion">true</meta>
		</version>
		<property name="code" lazy="false" insert="true" update="true" not-null="true" unique="false" type="java.lang.String">
			<column not-null="true" unique="false" name="`code`"/>
		</property>
		<many-to-one name="supplier" entity-name="SupplierType" lazy="false" cascade="merge,persist,save-update,lock,refresh" foreign-key="producttype_supplier" insert="true" update="true" not-null="true">
			<column not-null="true" unique="false" name="`suppliertype_supplier_e_id`"/>
		</many-to-one>
		<property name="price" lazy="false" insert="true" update="true" not-null="true" unique="false" type="double">
			<column not-null="true" unique="false" name="`price`"/>
		</property>
		<property name="createdOn" lazy="false" insert="true" update="true" not-null="true" unique="false" type="org.eclipse.emf.teneo.hibernate.mapping.XSDDate">
			<column not-null="true" unique="false" name="`createdon`"/>
		</property>
		<any id-type="long" meta-type="string" name="AnyOne" cascade="all">
			<column not-null="false" unique="false" name="`anyone_type`"/>
			<column not-null="false" unique="false" name="`anyone_id`"/>
		</any>
		<list name="AnyList" table="`producttype_anylist`" lazy="true" cascade="all,delete-orphan">
			<key update="true" foreign-key="producttype_anylist">
				<column name="`producttype_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`producttype_anylist_idx`"/>
			<many-to-any id-type="long" meta-type="string">
				<column not-null="false" unique="false" name="`anylist_type`"/>
				<column not-null="false" unique="false" name="`anylist_id`"/>
			</many-to-any>
		</list>
	</class>
	<class name="org.eclipse.emf.teneo.samples.emf.sample.product.impl.SupplierTypeImpl" entity-name="SupplierType" abstract="false" lazy="false" discriminator-value="SupplierType" table="`suppliertype`">
		<meta attribute="eclassName">SupplierType</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/emf/sample/product</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>
		<discriminator column="`dtype`" type="string"/>
		<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="java.lang.String">
			<column not-null="true" unique="false" name="`name`"/>
		</property>
		<property name="noOfEmployees" lazy="false" insert="true" update="true" not-null="true" unique="false" type="int">
			<column not-null="true" unique="false" name="`noofemployees`"/>
		</property>
	</class>
	<class name="org.eclipse.emf.teneo.samples.emf.sample.product.impl.ClassificationTypeImpl" entity-name="ClassificationType" abstract="false" lazy="false" discriminator-value="ClassificationType" table="`classificationtype`">
		<meta attribute="eclassName">ClassificationType</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/emf/sample/product</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>
		<discriminator column="`dtype`" type="string"/>
		<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="java.lang.String">
			<column not-null="true" unique="false" name="`name`"/>
		</property>
	</class>
</hibernate-mapping>

Back to the top