Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 141485c7d7e16b0e235d29f61c3ba5bf843c6463 (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
<?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 Wed Jan 24 23:13:55 CET 2007 -->
<hibernate-mapping>
	<class entity-name="XMLDeviant" abstract="false" lazy="false" table="`xmldeviant`">
		<meta attribute="eclassName">XMLDeviant</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/store/test/emf/schemaconstructs/restriction</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="numPosts" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.math.BigInteger">
			<column not-null="false" unique="false" name="`numposts`"/>
		</property>
		<property name="signature" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
			<column not-null="false" unique="false" name="`signature`"/>
		</property>
		<property name="email" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
			<column not-null="false" unique="false" name="`email`"/>
		</property>
		<property name="firstSubscribed" lazy="false" insert="true" update="true" not-null="false" unique="false">
			<column not-null="false" unique="false" name="`firstsubscribed`"/>
			<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>
		<property name="mailReader" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
			<column not-null="false" unique="false" name="`mailreader`"/>
		</property>
	</class>
	<joined-subclass entity-name="Member" abstract="false" lazy="false" extends="XMLDeviant" table="`member`">
		<meta attribute="eclassName">Member</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/store/test/emf/schemaconstructs/restriction</meta>
		<key>
			<column name="`xmldeviant_id`"/>
		</key>
	</joined-subclass>
</hibernate-mapping>

Back to the top