Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2009-04-26 06:12:24 +0000
committerEike Stepper2009-04-26 06:12:24 +0000
commitb898b516f440dfb743e7ec4c4fbccd2efcbe2e90 (patch)
tree386f47144f7b0511429557149f02cc20898b7d38 /plugins/org.eclipse.emf.cdo.server.db/plugin.xml
parent5ea76a85f410515036ec30c7125d2831750742e2 (diff)
downloadcdo-b898b516f440dfb743e7ec4c4fbccd2efcbe2e90.tar.gz
cdo-b898b516f440dfb743e7ec4c4fbccd2efcbe2e90.tar.xz
cdo-b898b516f440dfb743e7ec4c4fbccd2efcbe2e90.zip
[271444] [DB] Multiple refactorings
https://bugs.eclipse.org/bugs/show_bug.cgi?id=271444
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.server.db/plugin.xml')
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/plugin.xml20
1 files changed, 3 insertions, 17 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.db/plugin.xml b/plugins/org.eclipse.emf.cdo.server.db/plugin.xml
index acd168a01a..4a30c67ec8 100644
--- a/plugins/org.eclipse.emf.cdo.server.db/plugin.xml
+++ b/plugins/org.eclipse.emf.cdo.server.db/plugin.xml
@@ -14,7 +14,6 @@
<plugin>
<extension-point id="mappingStrategies" name="CDO Mapping Strategies" schema="schema/mappingStrategies.exsd"/>
- <extension-point id="jdbcDelegateProviders" name="CDO JDBC Delegate Providers" schema="schema/delegateProviders.exsd"/>
<extension
point="org.eclipse.emf.cdo.server.storeFactories">
@@ -27,25 +26,12 @@
<extension
point="org.eclipse.emf.cdo.server.db.mappingStrategies">
<mappingStrategy
- class="org.eclipse.emf.cdo.server.internal.db.mapping.HorizontalMappingStrategy"
+ class="org.eclipse.emf.cdo.server.internal.db.mapping.horizontal.HorizontalAuditMappingStrategy"
type="horizontal">
</mappingStrategy>
<mappingStrategy
- class="org.eclipse.emf.cdo.server.internal.db.mapping.VerticalMappingStrategy"
- type="vertical">
+ class="org.eclipse.emf.cdo.server.internal.db.mapping.horizontal.HorizontalNonAuditMappingStrategy"
+ type="horizontalNonAudit">
</mappingStrategy>
</extension>
-
- <extension
- point="org.eclipse.emf.cdo.server.db.jdbcDelegateProviders">
- <jdbcDelegateProvider
- class="org.eclipse.emf.cdo.server.internal.db.jdbc.StatementJDBCDelegateProvider"
- type="statement">
- </jdbcDelegateProvider>
- <jdbcDelegateProvider
- class="org.eclipse.emf.cdo.server.internal.db.jdbc.PreparedStatementJDBCDelegateProvider"
- type="preparedStatement">
- </jdbcDelegateProvider>
- </extension>
-
</plugin>

Back to the top