Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 32ae4653c04243badeb143a6c5052d3a01c18b95 (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
<?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.largemapvalue.impl.TestElementImpl" entity-name="TestElement" abstract="false" lazy="false" table="`TESTELEMENT`">
		<meta attribute="eclassName" inherit="false">TestElement</meta>
		<meta attribute="epackage" inherit="false">http://www.pubcurator.org/tester/testmodel</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="testMap" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`TESTELEMENT_TESTMAP_E_ID`" unique="false"/>
			</key>
			<map-key type="java.lang.String"/>
			<element not-null="false" unique="false" type="text">
				<column not-null="false" unique="false" name="`VALUE`" length="1000000"/>
			</element>
		</map>
		<property name="testProp" lazy="false" insert="true" update="true" not-null="false" unique="false" type="text">
			<column not-null="false" unique="false" name="`TESTPROP`" length="1000000"/>
		</property>
	</class>
</hibernate-mapping>

Back to the top