blob: 9d8259e85bb5780164a3418b9dbb052b31a6ad61 [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>
alshabiba7f7ca82014-09-22 11:41:23 -07005 <action class="org.onlab.onos.cli.net.FlowsListCommand"/>
6 </command>
7 <command>
tom6d2a43e2014-09-08 01:50:20 -07008 <action class="org.onlab.onos.cli.net.DevicesListCommand"/>
9 </command>
10 <command>
11 <action class="org.onlab.onos.cli.net.DevicePortsListCommand"/>
tom0eb04ca2014-08-25 14:34:51 -070012 <completers>
tom6d2a43e2014-09-08 01:50:20 -070013 <ref component-id="deviceIdCompleter"/>
tom0eb04ca2014-08-25 14:34:51 -070014 </completers>
15 </command>
tom6d2a43e2014-09-08 01:50:20 -070016 <command>
tomc290a122014-09-08 14:27:13 -070017 <action class="org.onlab.onos.cli.net.DeviceRemoveCommand"/>
18 <completers>
19 <ref component-id="deviceIdCompleter"/>
20 </completers>
21 </command>
tom5f35f7c2014-09-08 18:38:19 -070022 <command>
23 <action class="org.onlab.onos.cli.net.DeviceRoleCommand"/>
24 <completers>
25 <ref component-id="deviceIdCompleter"/>
26 <ref component-id="roleCompleter"/>
27 </completers>
28 </command>
tomc290a122014-09-08 14:27:13 -070029
30 <command>
tom6d2a43e2014-09-08 01:50:20 -070031 <action class="org.onlab.onos.cli.net.LinksListCommand"/>
32 <completers>
33 <ref component-id="deviceIdCompleter"/>
34 </completers>
35 </command>
tom13cb4852014-09-11 12:44:17 -070036
37 <command>
38 <action class="org.onlab.onos.cli.net.TopologyCommand"/>
39 </command>
40 <command>
tom9eb57fb2014-09-11 19:42:38 -070041 <action class="org.onlab.onos.cli.net.PathListCommand"/>
42 <completers>
43 <ref component-id="deviceIdCompleter"/>
44 </completers>
45 </command>
46 <command>
tom13cb4852014-09-11 12:44:17 -070047 <action class="org.onlab.onos.cli.net.ClustersListCommand"/>
48 </command>
49 <command>
50 <action class="org.onlab.onos.cli.net.ClusterDevicesCommand"/>
51 <completers>
52 <ref component-id="clusterIdCompleter"/>
53 </completers>
54 </command>
55 <command>
56 <action class="org.onlab.onos.cli.net.ClusterLinksCommand"/>
57 <completers>
58 <ref component-id="clusterIdCompleter"/>
59 </completers>
60 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -070061
62 <command>
63 <action class="org.onlab.onos.cli.net.HostsListCommand"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -070064 </command>
65
tom89b63c52014-09-16 09:19:51 -070066 <command>
67 <action class="org.onlab.onos.cli.net.WipeOutCommand"/>
68 </command>
tom0eb04ca2014-08-25 14:34:51 -070069 </command-bundle>
70
tom6d2a43e2014-09-08 01:50:20 -070071 <bean id="deviceIdCompleter" class="org.onlab.onos.cli.net.DeviceIdCompleter"/>
tom13cb4852014-09-11 12:44:17 -070072 <bean id="clusterIdCompleter" class="org.onlab.onos.cli.net.ClusterIdCompleter"/>
tom5f35f7c2014-09-08 18:38:19 -070073 <bean id="roleCompleter" class="org.onlab.onos.cli.net.RoleCompleter"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -070074 <bean id="hostIdCompleter" class="org.onlab.onos.cli.net.HostIdCompleter"/>
tom6d2a43e2014-09-08 01:50:20 -070075
tom0eb04ca2014-08-25 14:34:51 -070076</blueprint>