Move IPv4/6 Unicast extension to bgp-inet
[bgpcep.git] / bgp / rib-impl / src / main / resources / org / opendaylight / blueprint / bgp-rib.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
3            xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0">
4
5
6   <reference id="BGPExtensionContext" interface="org.opendaylight.protocol.bgp.parser.spi.BGPExtensionConsumerContext"/>
7   <reference id="globalBossGroup" interface="io.netty.channel.EventLoopGroup" odl:type="global-boss-group"/>
8   <reference id="globalWorkerGroup" interface="io.netty.channel.EventLoopGroup" odl:type="global-worker-group"/>
9
10   <bean id="BGPDispatcher" class="org.opendaylight.protocol.bgp.rib.impl.BGPDispatcherImpl">
11     <argument>
12       <bean factory-ref="BGPExtensionContext" factory-method="getMessageRegistry"/>
13     </argument>
14     <argument ref="globalBossGroup"/>
15     <argument ref="globalWorkerGroup"/>
16   </bean>
17
18   <service ref="BGPDispatcher" interface="org.opendaylight.protocol.bgp.rib.impl.spi.BGPDispatcher">
19     <!-- The following service properties specify the config system module and instance that correspond to
20          this OSGi service which enables the config system module to be restarted when this blueprint
21          container is restarted. -->
22     <service-properties>
23       <entry key="config-module-namespace" value="urn:opendaylight:params:xml:ns:yang:controller:bgp:rib:impl"/>
24       <entry key="config-module-name" value="bgp-dispatcher-impl"/>
25       <entry key="config-instance-name" value="global-bgp-dispatcher"/>
26     </service-properties>
27   </service>
28
29   <bean id="BGPPeerRegistry" class="org.opendaylight.protocol.bgp.rib.impl.StrictBGPPeerRegistry"
30           factory-method="instance"/>
31
32   <service ref="BGPPeerRegistry" interface="org.opendaylight.protocol.bgp.rib.impl.spi.BGPPeerRegistry"
33           odl:type="default">
34     <!-- The following service properties specify the config system module and instance that correspond to
35          this OSGi service which enables the config system module to be restarted when this blueprint
36          container is restarted. -->
37     <service-properties>
38       <entry key="config-module-namespace" value="urn:opendaylight:params:xml:ns:yang:controller:bgp:rib:impl"/>
39       <entry key="config-module-name" value="strict-bgp-peer-registry"/>
40       <entry key="config-instance-name" value="global-bgp-peer-registry"/>
41     </service-properties>
42   </service>
43 </blueprint>