blob: f7fc371c2314e487781753889ee32fce153837f1 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
2
3 <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
4 <command>
tom6d2a43e2014-09-08 01:50:20 -07005 <action class="org.onlab.onos.cli.net.DevicesListCommand"/>
6 </command>
7 <command>
8 <action class="org.onlab.onos.cli.net.DevicePortsListCommand"/>
tom0eb04ca2014-08-25 14:34:51 -07009 <completers>
tom6d2a43e2014-09-08 01:50:20 -070010 <ref component-id="deviceIdCompleter"/>
tom0eb04ca2014-08-25 14:34:51 -070011 </completers>
12 </command>
tom6d2a43e2014-09-08 01:50:20 -070013 <command>
14 <action class="org.onlab.onos.cli.net.LinksListCommand"/>
15 <completers>
16 <ref component-id="deviceIdCompleter"/>
17 </completers>
18 </command>
19
20 <!--<command>-->
21 <!--<action class="org.onlab.onos.cli.GreetCommand"/>-->
22 <!--<completers>-->
23 <!--<ref component-id="nameCompleter"/>-->
24 <!--</completers>-->
25 <!--</command>-->
tom0eb04ca2014-08-25 14:34:51 -070026 </command-bundle>
27
tom6d2a43e2014-09-08 01:50:20 -070028 <bean id="deviceIdCompleter" class="org.onlab.onos.cli.net.DeviceIdCompleter"/>
29
tom0eb04ca2014-08-25 14:34:51 -070030 <bean id="nameCompleter" class="org.onlab.onos.cli.NameCompleter"/>
31
32</blueprint>