drop 'openflow-plugin-provider-impl' odl:type
[openflowplugin.git] / extension / openflowplugin-extension-onf / src / main / resources / OSGI-INF / blueprint / openflowplugin-extension-onf.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2017 Pantheon Technologies s.r.o. and others. All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
10            xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
11            odl:use-default-for-reference-types="true">
12
13     <reference id="switchConnectionProvider"
14                interface="org.opendaylight.openflowjava.protocol.spi.connection.SwitchConnectionProvider"
15                odl:type="openflow-switch-connection-provider-default-impl"/>
16
17     <reference id="extensionRegistratorProvider"
18                interface="org.opendaylight.openflowplugin.extension.api.OpenFlowPluginExtensionRegistratorProvider"/>
19
20     <bean id="onfExtensionProvider"
21           class="org.opendaylight.openflowplugin.extension.onf.OnfExtensionProvider"
22           init-method="init">
23         <argument ref="switchConnectionProvider"/>
24         <argument ref="extensionRegistratorProvider"/>
25     </bean>
26 </blueprint>