summaryrefslogtreecommitdiff
path: root/qpid/java/broker-plugins/extras/src/main/java/org/apache/qpid/extras/Activator.java
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2010-04-23 15:45:25 +0000
committerMartin Ritchie <ritchiem@apache.org>2010-04-23 15:45:25 +0000
commit6c2b7468c10299f1df7de591210c257e834573f2 (patch)
tree6a41b9b78085eb55b9d5d727c69e2903106003ba /qpid/java/broker-plugins/extras/src/main/java/org/apache/qpid/extras/Activator.java
parentdd37c9106485a6c4b933fd5000912b4b8ea35a28 (diff)
downloadqpid-python-6c2b7468c10299f1df7de591210c257e834573f2.tar.gz
QPID-2531, QPID-2530 : Applied patches from Sorin Suciu to refactor broker-plugins directory and link new OSGi plugins to build system.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@937345 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-plugins/extras/src/main/java/org/apache/qpid/extras/Activator.java')
-rw-r--r--qpid/java/broker-plugins/extras/src/main/java/org/apache/qpid/extras/Activator.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/qpid/java/broker-plugins/extras/src/main/java/org/apache/qpid/extras/Activator.java b/qpid/java/broker-plugins/extras/src/main/java/org/apache/qpid/extras/Activator.java
new file mode 100644
index 0000000000..ca6c05a435
--- /dev/null
+++ b/qpid/java/broker-plugins/extras/src/main/java/org/apache/qpid/extras/Activator.java
@@ -0,0 +1,48 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+package org.apache.qpid.extras;
+
+import org.apache.qpid.extras.exchanges.diagnostic.DiagnosticExchangeType;
+import org.apache.qpid.extras.exchanges.example.TestExchangeType;
+import org.apache.qpid.server.exchange.ExchangeType;
+import org.osgi.framework.BundleActivator;
+import org.osgi.framework.BundleContext;
+
+/**
+ *
+ * @author aidan
+ *
+ * Dummy class, used by PluginTest
+ */
+
+public class Activator implements BundleActivator
+{
+
+ public void start(BundleContext ctx) throws Exception
+ {
+ ctx.registerService(ExchangeType.class.getName(), new TestExchangeType(), null);
+ ctx.registerService(ExchangeType.class.getName(), new DiagnosticExchangeType(), null);
+ }
+
+ public void stop(BundleContext ctx) throws Exception
+ {
+ }
+}