Add blueprint XML for bgp-labeled-unicast 28/40328/6
authorTom Pantelis <tpanteli@brocade.com>
Tue, 14 Jun 2016 21:57:47 +0000 (17:57 -0400)
committerMilos Fabian <milfabia@cisco.com>
Tue, 28 Jun 2016 08:30:33 +0000 (08:30 +0000)
Change-Id: I96f286cea1d2464dbe9aaf6009d8152ae26f6049
Signed-off-by: Tom Pantelis <tpanteli@brocade.com>
bgp/labeled-unicast/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator [new file with mode: 0644]
bgp/labeled-unicast/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator [new file with mode: 0644]
bgp/labeled-unicast/src/main/resources/org/opendaylight/blueprint/bgp-labeled-unicast.xml [new file with mode: 0644]

diff --git a/bgp/labeled-unicast/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator b/bgp/labeled-unicast/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator
new file mode 100644 (file)
index 0000000..149475d
--- /dev/null
@@ -0,0 +1,7 @@
+# Copyright (c) 2016 Brocade Communications Systems, Inc. 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
+org.opendaylight.protocol.bgp.labeled.unicast.BGPActivator
diff --git a/bgp/labeled-unicast/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator b/bgp/labeled-unicast/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator
new file mode 100644 (file)
index 0000000..7c4df06
--- /dev/null
@@ -0,0 +1,7 @@
+# Copyright (c) 2016 Brocade Communications Systems, Inc. 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
+org.opendaylight.protocol.bgp.labeled.unicast.RIBActivator
diff --git a/bgp/labeled-unicast/src/main/resources/org/opendaylight/blueprint/bgp-labeled-unicast.xml b/bgp/labeled-unicast/src/main/resources/org/opendaylight/blueprint/bgp-labeled-unicast.xml
new file mode 100644 (file)
index 0000000..4a6f8f5
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
+           xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0">
+
+  <bean id="BGPActivator" class="org.opendaylight.protocol.bgp.labeled.unicast.BGPActivator"/>
+
+  <bean id="RIBActivator" class="org.opendaylight.protocol.bgp.labeled.unicast.RIBActivator"/>
+
+  <service ref="BGPActivator" interface="org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator"
+          odl:type="org.opendaylight.protocol.bgp.labeled.unicast.BGPActivator"/>
+
+  <service ref="RIBActivator" interface="org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator"
+          odl:type="org.opendaylight.protocol.bgp.labeled.unicast.RIBActivator"/>
+</blueprint>
\ No newline at end of file