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