Add blueprint XML for bgp-evpn 09/40409/8
authorTom Pantelis <tpanteli@brocade.com>
Wed, 15 Jun 2016 02:00:03 +0000 (22:00 -0400)
committerTom Pantelis <tpanteli@brocade.com>
Thu, 7 Jul 2016 17:37:25 +0000 (17:37 +0000)
Change-Id: Ic7eb3f43fc31a615cf5767762c31d0f191778fe5
Signed-off-by: Tom Pantelis <tpanteli@brocade.com>
bgp/evpn/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator [new file with mode: 0644]
bgp/evpn/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator [new file with mode: 0644]
bgp/evpn/src/main/resources/org/opendaylight/blueprint/bgp-evpn.xml [new file with mode: 0644]

diff --git a/bgp/evpn/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator b/bgp/evpn/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator
new file mode 100644 (file)
index 0000000..3f0eb87
--- /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.evpn.impl.BGPActivator
diff --git a/bgp/evpn/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator b/bgp/evpn/src/main/resources/META-INF/services/org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator
new file mode 100644 (file)
index 0000000..e5c2a1e
--- /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.evpn.impl.RIBActivator
diff --git a/bgp/evpn/src/main/resources/org/opendaylight/blueprint/bgp-evpn.xml b/bgp/evpn/src/main/resources/org/opendaylight/blueprint/bgp-evpn.xml
new file mode 100644 (file)
index 0000000..f2210b3
--- /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.evpn.impl.BGPActivator"/>
+
+  <bean id="RIBActivator" class="org.opendaylight.protocol.bgp.evpn.impl.RIBActivator"/>
+
+  <service ref="BGPActivator" interface="org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator"
+          odl:type="org.opendaylight.protocol.bgp.evpn.impl.BGPActivator"/>
+
+  <service ref="RIBActivator" interface="org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator"
+          odl:type="org.opendaylight.protocol.bgp.evpn.impl.RIBActivator"/>
+</blueprint>
\ No newline at end of file