Rename autowire.xml
[openflowplugin.git] / applications / device-ownership-service / src / main / resources / OSGI-INF / blueprint / device-ownership-service.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
3   <bean id="deviceOwnershipServiceImpl"
4         class="org.opendaylight.openflowplugin.applications.deviceownershipservice.impl.DeviceOwnershipServiceImpl"
5         init-method="start"
6         destroy-method="close">
7     <argument ref="entityOwnershipService"/>
8   </bean>
9   <service ref="deviceOwnershipServiceImpl"
10            interface="org.opendaylight.openflowplugin.applications.deviceownershipservice.DeviceOwnershipService"/>
11
12   <reference id="entityOwnershipService"
13              interface="org.opendaylight.mdsal.eos.binding.api.EntityOwnershipService"/>
14 </blueprint>