NETVIRT-1630 migrate to md-sal APIs
[netvirt.git] / fibmanager / shell / src / main / resources / OSGI-INF / blueprint / blueprint.xml
1 <!--    * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
2         *
3         * This program and the accompanying materials are made available under the
4         * terms of the Eclipse Public License v1.0 which accompanies this distribution,
5         * and is available at http://www.eclipse.org/legal/epl-v10.html
6 -->
7
8 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
9            xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
10            odl:use-default-for-reference-types="true">
11
12   <reference id="fibManagerRef" interface="org.opendaylight.netvirt.fibmanager.api.IFibManager" />
13   <reference id="dataBrokerRef" interface="org.opendaylight.mdsal.binding.api.DataBroker" />
14   <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
15
16     <command>
17       <action class="org.opendaylight.netvirt.fibmanager.shell.ShowFibCommand">
18         <property name="dataBroker" ref="dataBrokerRef"/>
19       </action>
20     </command>
21     <command>
22       <action class="org.opendaylight.netvirt.fibmanager.shell.ConfTransportL3VPNCommand">
23         <argument ref="fibManagerRef"/>
24       </action>
25     </command>
26
27     <command>
28       <action class="org.opendaylight.netvirt.fibmanager.shell.ShowTransportTypeCommand">
29         <argument ref="fibManagerRef"/>
30       </action>
31     </command>
32
33   </command-bundle>
34
35 </blueprint>