Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5df96109201d781e4c236362c391f2939473545a (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
	Copyright (c) 2007-2012, 2020-2022 Eike Stepper (Loehne, Germany) and others.
	All rights reserved. This program and the accompanying materials
	are made available under the terms of the Eclipse Public License v1.0
	which accompanies this distribution, and is available at
	http://www.eclipse.org/legal/epl-v10.html
	
	Contributors:
	  Eike Stepper - initial API and implementation
-->

<plugin>

   <extension-point id="mappingStrategies" name="%extension-point.name" schema="schema/mappingStrategies.exsd"/>
   
   <extension point="org.eclipse.net4j.util.productGroups">
       <productGroup id="org.eclipse.emf.cdo.server.db.typeMappingProviders" name="CDO Type Mapping Providers"/>
   </extension>

   <extension point="org.eclipse.net4j.util.factories">
      <factory
            productGroup="org.eclipse.emf.cdo.server.browserPages"
            type="db-tables"
            class="org.eclipse.emf.cdo.server.internal.db.DBBrowserPage$Tables$Factory"/>
      <factory
            productGroup="org.eclipse.emf.cdo.server.browserPages"
            type="db-queries"
            class="org.eclipse.emf.cdo.server.internal.db.DBBrowserPage$Queries$Factory"/>
      <factory
            productGroup="org.eclipse.emf.cdo.server.db.typeMappingProviders"
            type="registry"
            class="org.eclipse.emf.cdo.server.internal.db.mapping.TypeMappingRegistry$Factory"/>
   </extension>

   <extension point="org.eclipse.emf.cdo.server.storeFactories">
      <storeFactory
            class="org.eclipse.emf.cdo.server.internal.db.DBStoreFactory"
            storeType="db"/>
   </extension>

   <extension point="org.eclipse.emf.cdo.server.db.mappingStrategies">
      <mappingStrategy
            class="org.eclipse.emf.cdo.server.internal.db.mapping.horizontal.HorizontalMappingStrategy"
            type="horizontal"/>
      <mappingStrategy
            class="org.eclipse.emf.cdo.server.internal.db.mapping.horizontal.HorizontalNonAuditMappingStrategy"
            type="horizontalNonAuditing"/>
      <mappingStrategy
            class="org.eclipse.emf.cdo.server.internal.db.mapping.horizontal.HorizontalAuditMappingStrategy"
            type="horizontalAuditing"/>
      <mappingStrategy
            class="org.eclipse.emf.cdo.server.internal.db.mapping.horizontal.HorizontalBranchingMappingStrategy"
            type="horizontalBranching"/>
      <mappingStrategy
            class="org.eclipse.emf.cdo.server.internal.db.mapping.horizontal.HorizontalAuditMappingStrategyWithRanges"
            type="horizontalAuditingWithRanges"/>
      <mappingStrategy
            class="org.eclipse.emf.cdo.server.internal.db.mapping.horizontal.HorizontalBranchingMappingStrategyWithRanges"
            type="horizontalBranchingWithRanges"/>
   </extension>
   
</plugin>

Back to the top