tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <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> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 5 | <action class="org.onlab.onos.cli.net.DevicesListCommand"/> |
| 6 | </command> |
| 7 | <command> |
| 8 | <action class="org.onlab.onos.cli.net.DevicePortsListCommand"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 9 | <completers> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 10 | <ref component-id="deviceIdCompleter"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 11 | </completers> |
| 12 | </command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 13 | <command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 14 | <action class="org.onlab.onos.cli.net.DeviceRemoveCommand"/> |
| 15 | <completers> |
| 16 | <ref component-id="deviceIdCompleter"/> |
| 17 | </completers> |
| 18 | </command> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 19 | <command> |
| 20 | <action class="org.onlab.onos.cli.net.DeviceRoleCommand"/> |
| 21 | <completers> |
| 22 | <ref component-id="deviceIdCompleter"/> |
| 23 | <ref component-id="roleCompleter"/> |
| 24 | </completers> |
| 25 | </command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 26 | |
| 27 | <command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 28 | <action class="org.onlab.onos.cli.net.LinksListCommand"/> |
| 29 | <completers> |
| 30 | <ref component-id="deviceIdCompleter"/> |
| 31 | </completers> |
| 32 | </command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 33 | |
| 34 | <command> |
| 35 | <action class="org.onlab.onos.cli.net.TopologyCommand"/> |
| 36 | </command> |
| 37 | <command> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 38 | <action class="org.onlab.onos.cli.net.PathListCommand"/> |
| 39 | <completers> |
| 40 | <ref component-id="deviceIdCompleter"/> |
| 41 | </completers> |
| 42 | </command> |
| 43 | <command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 44 | <action class="org.onlab.onos.cli.net.ClustersListCommand"/> |
| 45 | </command> |
| 46 | <command> |
| 47 | <action class="org.onlab.onos.cli.net.ClusterDevicesCommand"/> |
| 48 | <completers> |
| 49 | <ref component-id="clusterIdCompleter"/> |
| 50 | </completers> |
| 51 | </command> |
| 52 | <command> |
| 53 | <action class="org.onlab.onos.cli.net.ClusterLinksCommand"/> |
| 54 | <completers> |
| 55 | <ref component-id="clusterIdCompleter"/> |
| 56 | </completers> |
| 57 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 58 | |
| 59 | <command> |
| 60 | <action class="org.onlab.onos.cli.net.HostsListCommand"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 61 | </command> |
| 62 | |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 63 | <command> |
| 64 | <action class="org.onlab.onos.cli.net.WipeOutCommand"/> |
| 65 | </command> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 66 | </command-bundle> |
| 67 | |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 68 | <bean id="deviceIdCompleter" class="org.onlab.onos.cli.net.DeviceIdCompleter"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 69 | <bean id="clusterIdCompleter" class="org.onlab.onos.cli.net.ClusterIdCompleter"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 70 | <bean id="roleCompleter" class="org.onlab.onos.cli.net.RoleCompleter"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 71 | <bean id="hostIdCompleter" class="org.onlab.onos.cli.net.HostIdCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 72 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 73 | </blueprint> |