Skip to main content
summaryrefslogtreecommitdiffstats
blob: c5e06b16160a2f111b54a23f364272a32c5e033d (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
76
77
78
79
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jdo SYSTEM "file:/javax/jdo/jdo.dtd">

<!--	Generated by Teneo on Fri Mar 30 21:43:52 CEST 2007 -->
<jdo>
	<package name="org.eclipse.emf.teneo.rental.impl">
		<class name="org.eclipse.emf.teneo.rental.impl.RentalBicycleImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="rentalbicycle" identity-type="application">
			<implements name="org.eclipse.emf.teneo.rental.RentalBicycle"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
			<field name="type" persistence-modifier="persistent" null-value="none" embedded="true"/>
			<field name="typeESet" persistence-modifier="persistent"/>
			<field name="manufacturer" persistence-modifier="persistent" delete-action="restrict" null-value="exception">
				<foreign-key>
					<column name="manufacturer_manufacturer_e_id" allows-null="false"/>
				</foreign-key>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.rental.impl.ManufacturerImpl"/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.rental.impl.CurrencyImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="currency" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.rental.Currency"/>
			<implements name="org.eclipse.emf.ecore.EObject"/>
			<implements name="org.eclipse.emf.common.notify.Notifier"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
			<field name="code" persistence-modifier="persistent" null-value="exception"/>
		</class>
		<class name="org.eclipse.emf.teneo.rental.impl.RentalCarImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="rentalcar" identity-type="application">
			<implements name="org.eclipse.emf.teneo.rental.RentalCar"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
			<field name="size" persistence-modifier="persistent" null-value="none" embedded="true"/>
			<field name="sizeESet" persistence-modifier="persistent"/>
		</class>
		<class name="org.eclipse.emf.teneo.rental.impl.RentalContractImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="rentalcontract" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.rental.RentalContract"/>
			<implements name="org.eclipse.emf.ecore.EObject"/>
			<implements name="org.eclipse.emf.common.notify.Notifier"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
			<field name="rentToBusinessPartner" persistence-modifier="persistent" null-value="exception"/>
			<field name="startDate" persistence-modifier="persistent" null-value="exception" embedded="true"/>
			<field name="endDate" persistence-modifier="persistent" null-value="none" embedded="true"/>
			<field name="endDateESet" persistence-modifier="persistent"/>
			<field name="cost" persistence-modifier="persistent" null-value="none"/>
			<field name="costESet" persistence-modifier="persistent"/>
			<field name="rentalUnits" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.rental.impl.RentalUnitImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<order column="RENTALCONTRACT_RENTALUNITS_IDX"/>
				<column name="rentalcontract_rentalunits_e_id" allows-null="true"/>
				<foreign-key delete-action="restrict" update-action="cascade"/>
			</field>
			<field name="currency" persistence-modifier="persistent" delete-action="restrict" null-value="none">
				<foreign-key>
					<column name="currency_currency_e_id" allows-null="true"/>
				</foreign-key>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.rental.impl.CurrencyImpl"/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.rental.impl.RentalUnitImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="rentalunit" identity-type="application">
			<implements name="org.eclipse.emf.teneo.rental.RentalUnit"/>
			<implements name="org.eclipse.emf.ecore.EObject"/>
			<implements name="org.eclipse.emf.common.notify.Notifier"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
			<field name="description" persistence-modifier="persistent" primary-key="true"/>
		</class>
		<class name="org.eclipse.emf.teneo.rental.impl.ManufacturerImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="manufacturer" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.rental.Manufacturer"/>
			<implements name="org.eclipse.emf.ecore.EObject"/>
			<implements name="org.eclipse.emf.common.notify.Notifier"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
			<field name="code" persistence-modifier="persistent" null-value="exception"/>
		</class>
	</package>
</jdo>

Back to the top