Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: be192a9d1d54cf4d59d8c887889b07c4cd3fbfd5 (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
<?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 15:29:09 CET 2006 -->
<hibernate-mapping>
	<class entity-name="XMLDeviant" abstract="false" lazy="false" discriminator-value="XMLDeviant" 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>
		<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="numPosts" type="java.math.BigInteger" lazy="false" not-null="false">
			<column not-null="false" unique="false" name="`numposts`"/>
		</property>
		<property name="signature" type="java.lang.String" lazy="false" not-null="false">
			<column not-null="false" unique="false" name="`signature`"/>
		</property>
		<property name="email" type="java.lang.String" lazy="false" not-null="false">
			<column not-null="false" unique="false" name="`email`"/>
		</property>
		<property name="firstSubscribed" type="serializable" lazy="false" not-null="false">
			<column not-null="false" unique="false" name="`firstsubscribed`"/>
		</property>
		<property name="mailReader" type="java.lang.String" lazy="false" not-null="false">
			<column not-null="false" unique="false" name="`mailreader`"/>
		</property>
	</class>
	<subclass entity-name="Member" abstract="false" lazy="false" extends="XMLDeviant" discriminator-value="Member">
		<meta attribute="eclassName">Member</meta>
		<meta attribute="epackage">http://www.eclipse.org/emf/teneo/store/test/emf/schemaconstructs/restriction</meta>
	</subclass>
</hibernate-mapping>

Back to the top