Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 334abbd5d86efb379f7dcb8312ea3afa891ea69d (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">

<!--	Generated by Teneo on Tue Jan 02 18:46:00 CET 2007 -->
<hibernate-mapping>
	<class entity-name="ProductType" abstract="false" lazy="false" 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>
		<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="false" unique="false" type="java.lang.String">
			<column not-null="false" unique="false" name="`code`"/>
		</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>
		<property name="price" lazy="false" insert="true" update="true" not-null="false" unique="false" type="double">
			<column not-null="false" unique="false" name="`price`"/>
		</property>
		<property name="createdOn" lazy="false" insert="true" update="true" not-null="true" unique="false">
			<column not-null="true" unique="false" name="`createdon`"/>
			<type name="org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserType">
				<param name="edatatype">Date</param>
				<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
			</type>
		</property>
		<any name="AnyOne" id-type="long" cascade="merge,persist,save-update,lock,refresh">
			<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/>
			<list-index column="`producttype_anylist_idx`"/>
			<many-to-any id-type="long">
				<column not-null="true" unique="false" name="`anylist_type`"/>
				<column not-null="true" unique="false" name="`anylist_id`"/>
			</many-to-any>
		</list>
	</class>
	<class entity-name="SupplierType" abstract="false" lazy="false" 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>
		<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="false" unique="false" type="int">
			<column not-null="false" unique="false" name="`noofemployees`"/>
		</property>
	</class>
	<class entity-name="ClassificationType" abstract="false" lazy="false" 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>
		<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="false" unique="false" type="java.lang.String">
			<column not-null="false" unique="false" name="`name`"/>
		</property>
	</class>
</hibernate-mapping>

Back to the top