Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.net4j/plugin.xml')
-rw-r--r--plugins/org.eclipse.emf.cdo.net4j/plugin.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.net4j/plugin.xml b/plugins/org.eclipse.emf.cdo.net4j/plugin.xml
new file mode 100644
index 0000000000..e3aa1d3c08
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.net4j/plugin.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.3"?>
+<!--
+ Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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="org.eclipse.net4j.util.factories">
+ <factory
+ class="org.eclipse.emf.internal.cdo.net4j.protocol.CDOClientProtocolFactory"
+ productGroup="org.eclipse.net4j.clientProtocols"
+ type="cdo"/>
+ <factory
+ class="org.eclipse.emf.internal.cdo.net4j.CDONet4jSessionFactory"
+ productGroup="org.eclipse.emf.cdo.sessions"
+ type="cdo"/>
+ </extension>
+
+ <extension
+ point="org.eclipse.net4j.util.elementProcessors">
+ <elementProcessor
+ class="org.eclipse.emf.internal.cdo.net4j.FailOverStrategyInjector">
+ </elementProcessor>
+ </extension>
+
+
+
+
+
+</plugin>

Back to the top