Add blueprint wiring for host tracker
[l2switch.git] / hosttracker / implementation / src / main / resources / org / opendaylight / blueprint / host-tracker.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   odl:use-default-for-reference-types="true">
5
6   <reference id="dataBroker"
7     interface="org.opendaylight.controller.md.sal.binding.api.DataBroker"
8     odl:type="default" />
9
10   <odl:clustered-app-config id="hostTrackerConfig"
11     binding-class="org.opendaylight.yang.gen.v1.urn.opendaylight.l2switch.host.tracker.config.rev140528.HostTrackerConfig">
12   </odl:clustered-app-config>
13
14   <bean id="hostTrackerImpl"
15     class="org.opendaylight.l2switch.hosttracker.plugin.internal.HostTrackerImpl"
16     init-method="init" destroy-method="close">
17     <argument ref="dataBroker" />
18     <argument ref="hostTrackerConfig" />
19   </bean>
20
21 </blueprint>