Merge "Bug 4868 - Extend netconf-node-topology model to distinguish user overriden...
[netconf.git] / netconf / netconf-console / src / main / resources / OSGI-INF / blueprint / commands.xml
1 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
2     <reference id="netconfConsoleProvider" availability="mandatory"
3         activation="eager" interface="org.opendaylight.netconf.console.api.NetconfCommands">
4     </reference>
5     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.0.0">
6         <command name="netconf:connect-device">
7             <action class="org.opendaylight.netconf.console.commands.NetconfConnectDeviceCommand">
8                 <argument ref="netconfConsoleProvider"/>
9             </action>
10         </command>
11         <command name="netconf:list-devices">
12             <action class="org.opendaylight.netconf.console.commands.NetconfListDevicesCommand">
13                 <argument ref="netconfConsoleProvider"/>
14             </action>
15         </command>
16         <command name="netconf:show-device">
17             <action class="org.opendaylight.netconf.console.commands.NetconfShowDeviceCommand">
18                 <argument ref="netconfConsoleProvider"/>
19             </action>
20         </command>
21         <command name="netconf:disconnect-device">
22             <action class="org.opendaylight.netconf.console.commands.NetconfDisconnectDeviceCommand">
23                 <argument ref="netconfConsoleProvider"/>
24             </action>
25         </command>
26         <command name="netconf:update-device">
27             <action class="org.opendaylight.netconf.console.commands.NetconfUpdateDeviceCommand">
28                 <argument ref="netconfConsoleProvider"/>
29             </action>
30         </command>
31     </command-bundle>
32 </blueprint>