Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8d3f350f8dff0ed8b0a4cd005419a7f80eff7194 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?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 Mon Nov 13 20:18:38 CET 2006 -->
<hibernate-mapping>
	<class entity-name="CatalogType" abstract="false" lazy="false" discriminator-value="CatalogType" table="`catalogtype`">
		<meta attribute="eclassName">CatalogType</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/emf/sample/catalog</meta>
		<id name="name" type="java.lang.String">
			<column not-null="true" unique="false" name="`name`"/>
		</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="description" type="java.lang.String" lazy="false" insert="true" update="true" not-null="true" unique="false">
			<column not-null="true" unique="false" name="`description`"/>
		</property>
		<list name="subCatalog" lazy="true" cascade="merge,persist,save-update,lock,refresh">
			<key update="true">
				<column name="`catalogtype_subcatalog_name`" not-null="false" unique="false"/>
			</key>
			<list-index column="`catalogtype_subcatalog_idx`"/>
			<one-to-many entity-name="CatalogType"/>
		</list>
		<list name="product" lazy="true" cascade="merge,persist,save-update,lock,refresh">
			<key update="true">
				<column name="`catalogtype_product_name`" not-null="false" unique="false"/>
			</key>
			<list-index column="`catalogtype_product_idx`"/>
			<one-to-many entity-name="ProductType"/>
		</list>
	</class>
	<class entity-name="PriceType" abstract="false" lazy="false" discriminator-value="PriceType" table="`pricetype`">
		<meta attribute="eclassName">PriceType</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/emf/sample/catalog</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="price" type="double" lazy="false" insert="true" update="true" not-null="false" unique="false">
			<column not-null="false" unique="false" name="`price`"/>
		</property>
		<property name="quantityTo" type="double" lazy="false" insert="true" update="true" not-null="false" unique="false">
			<column not-null="false" unique="false" name="`quantityto`"/>
		</property>
		<many-to-one name="supplier" entity-name="SupplierType" cascade="merge,persist,save-update,lock,refresh" lazy="false" insert="true" update="true" not-null="true">
			<column not-null="true" unique="false" name="`suppliertype_supplier_id`"/>
		</many-to-one>
	</class>
	<class 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/catalog</meta>
		<id name="code" type="java.lang.String">
			<column not-null="true" unique="false" name="`code`"/>
		</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="description" type="java.lang.String" lazy="false" insert="true" update="true" not-null="false" unique="false">
			<column not-null="false" unique="false" name="`description`"/>
		</property>
		<list name="remark" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`producttype_remark_code`" not-null="false" unique="false"/>
			</key>
			<list-index column="`producttype_remark_idx`"/>
			<one-to-many entity-name="StringType"/>
		</list>
		<many-to-one name="price" entity-name="PriceType" cascade="all" lazy="false" insert="true" update="true" not-null="true">
			<column not-null="true" unique="false" name="`pricetype_price_id`"/>
		</many-to-one>
	</class>
	<class entity-name="StringType" abstract="false" lazy="false" discriminator-value="StringType" table="`stringtype`">
		<meta attribute="eclassName">StringType</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/samples/emf/sample/catalog</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="value" type="java.lang.String" lazy="false" insert="true" update="true" not-null="true" unique="false">
			<column not-null="true" unique="false" name="`value`"/>
		</property>
	</class>
	<class 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/catalog</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" type="java.lang.String" lazy="false" insert="true" update="true" not-null="true" unique="false">
			<column not-null="true" unique="false" name="`name`"/>
		</property>
		<property name="noOfEmployees" type="int" lazy="false" insert="true" update="true" not-null="false" unique="false">
			<column not-null="false" unique="false" name="`noofemployees`"/>
		</property>
	</class>
</hibernate-mapping>

Back to the top