Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3485d4b7d97be3aecd2e035d2efd41397e798d13 (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
<?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">
	<typedef name="maps.EnumTypeObject" class="org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserType">
		<param name="epackage">http://www.eclipse.org/emf/teneo/samples/emf/jpa2/maps</param>
		<param name="edatatype">EnumTypeObject</param>
	</typedef>
	<class name="org.eclipse.emf.teneo.samples.emf.jpa2.maps.impl.ImagesImpl" entity-name="Images" abstract="false" lazy="false" table="`IMAGES`">
		<meta attribute="eclassName" inherit="false">Images</meta>
		<meta attribute="epackage" inherit="false">http://www.eclipse.org/emf/teneo/samples/emf/jpa2/maps</meta>
		<id type="long" name="e_id" column="e_id" access="org.eclipse.emf.teneo.hibernate.mapping.identifier.IdentifierPropertyHandler">
			<meta attribute="syntheticId" inherit="false">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" inherit="false">true</meta>
		</version>
		<map name="imageFiles" table="`IMAGE_MAPPING`" lazy="false" cascade="all,delete-orphan">
			<key/>
			<map-key type="java.lang.String">
				<column not-null="false" unique="false" name="`IMAGE_NAME`"/>
			</map-key>
			<element not-null="false" unique="false" type="java.lang.String">
				<column not-null="false" unique="false" name="`IMAGE_FILENAME`"/>
			</element>
		</map>
		<map name="imageTypeNames" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`IMAGES_IMAGETYPENAMES_E_ID`" unique="false"/>
			</key>
			<map-key>
				<type name="org.eclipse.emf.teneo.hibernate.mapping.ENumUserType">
					<param name="enumClass">org.eclipse.emf.teneo.samples.emf.jpa2.maps.EnumType</param>
					<param name="eclassifier">EnumType</param>
					<param name="epackage">http://www.eclipse.org/emf/teneo/samples/emf/jpa2/maps</param>
				</type>
			</map-key>
			<element type="java.lang.String"/>
		</map>
		<map name="imageDateDescriptions" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`IMAGES_IMAGEDATEDESCRIPTIONS_E_ID`" unique="false"/>
			</key>
			<map-key type="timestamp"/>
			<element type="java.lang.String"/>
		</map>
		<map name="photoParts" table="`PHOTOPARTS_MAP`" lazy="true" cascade="all,delete-orphan">
			<key/>
			<map-key-many-to-many entity-name="PhotoPart">
				<column not-null="true" unique="false" name="`PARTS_NAME`"/>
			</map-key-many-to-many>
			<element type="java.lang.String"/>
		</map>
	</class>
	<class name="org.eclipse.emf.teneo.samples.emf.jpa2.maps.impl.PhotoPartImpl" entity-name="PhotoPart" abstract="false" lazy="false" table="`PHOTOPART`">
		<meta attribute="eclassName" inherit="false">PhotoPart</meta>
		<meta attribute="epackage" inherit="false">http://www.eclipse.org/emf/teneo/samples/emf/jpa2/maps</meta>
		<id type="long" name="e_id" column="e_id" access="org.eclipse.emf.teneo.hibernate.mapping.identifier.IdentifierPropertyHandler">
			<meta attribute="syntheticId" inherit="false">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" inherit="false">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