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 | 9b4030d | 2014-10-06 10:39:03 -0700 | [diff] [blame] | 5 | <action class="org.onlab.onos.cli.SummaryCommand"/> |
| 6 | </command> |
| 7 | <command> |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 8 | <action class="org.onlab.onos.cli.NodesListCommand"/> |
| 9 | </command> |
| 10 | <command> |
tom | 9710fb4 | 2014-09-29 11:35:28 -0700 | [diff] [blame] | 11 | <action class="org.onlab.onos.cli.NodeAddCommand"/> |
| 12 | </command> |
| 13 | <command> |
| 14 | <action class="org.onlab.onos.cli.NodeRemoveCommand"/> |
| 15 | </command> |
| 16 | <command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 17 | <action class="org.onlab.onos.cli.MastersListCommand"/> |
| 18 | <completers> |
| 19 | <ref component-id="clusterIdCompleter"/> |
| 20 | </completers> |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 21 | </command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 22 | |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 23 | <command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 24 | <action class="org.onlab.onos.cli.net.DevicesListCommand"/> |
| 25 | </command> |
| 26 | <command> |
| 27 | <action class="org.onlab.onos.cli.net.DevicePortsListCommand"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 28 | <completers> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 29 | <ref component-id="deviceIdCompleter"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 30 | </completers> |
| 31 | </command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 32 | <command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 33 | <action class="org.onlab.onos.cli.net.DeviceRemoveCommand"/> |
| 34 | <completers> |
| 35 | <ref component-id="deviceIdCompleter"/> |
| 36 | </completers> |
| 37 | </command> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 38 | <command> |
| 39 | <action class="org.onlab.onos.cli.net.DeviceRoleCommand"/> |
| 40 | <completers> |
| 41 | <ref component-id="deviceIdCompleter"/> |
| 42 | <ref component-id="roleCompleter"/> |
| 43 | </completers> |
| 44 | </command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 45 | |
| 46 | <command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 47 | <action class="org.onlab.onos.cli.net.LinksListCommand"/> |
| 48 | <completers> |
| 49 | <ref component-id="deviceIdCompleter"/> |
| 50 | </completers> |
| 51 | </command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 52 | |
| 53 | <command> |
| 54 | <action class="org.onlab.onos.cli.net.TopologyCommand"/> |
| 55 | </command> |
| 56 | <command> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 57 | <action class="org.onlab.onos.cli.net.PathListCommand"/> |
| 58 | <completers> |
| 59 | <ref component-id="deviceIdCompleter"/> |
| 60 | </completers> |
| 61 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 62 | |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 63 | <command> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 64 | <action class="org.onlab.onos.cli.net.IntentsListCommand"/> |
| 65 | </command> |
| 66 | <command> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 67 | <action class="org.onlab.onos.cli.net.IntentRemoveCommand"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 68 | <completers> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 69 | <ref component-id="intentIdCompleter"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 70 | </completers> |
| 71 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 72 | <command> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 73 | <action class="org.onlab.onos.cli.net.AddHostToHostIntentCommand"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 74 | <completers> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 75 | <ref component-id="hostIdCompleter"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 76 | </completers> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 77 | </command> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 78 | |
| 79 | <command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 80 | <action class="org.onlab.onos.cli.net.ClustersListCommand"/> |
| 81 | </command> |
| 82 | <command> |
| 83 | <action class="org.onlab.onos.cli.net.ClusterDevicesCommand"/> |
| 84 | <completers> |
| 85 | <ref component-id="clusterIdCompleter"/> |
| 86 | </completers> |
| 87 | </command> |
| 88 | <command> |
| 89 | <action class="org.onlab.onos.cli.net.ClusterLinksCommand"/> |
| 90 | <completers> |
| 91 | <ref component-id="clusterIdCompleter"/> |
| 92 | </completers> |
| 93 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 94 | |
| 95 | <command> |
| 96 | <action class="org.onlab.onos.cli.net.HostsListCommand"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 97 | </command> |
| 98 | |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 99 | <command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 100 | <action class="org.onlab.onos.cli.net.FlowsListCommand"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 101 | <completers> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 102 | <ref component-id="flowRuleStatusCompleter"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 103 | <ref component-id="deviceIdCompleter"/> |
| 104 | </completers> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 105 | </command> |
| 106 | |
| 107 | <command> |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 108 | <action class="org.onlab.onos.cli.net.WipeOutCommand"/> |
| 109 | </command> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 110 | </command-bundle> |
| 111 | |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 112 | <bean id="nodeIdCompleter" class="org.onlab.onos.cli.NodeIdCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 113 | <bean id="deviceIdCompleter" class="org.onlab.onos.cli.net.DeviceIdCompleter"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 114 | <bean id="clusterIdCompleter" class="org.onlab.onos.cli.net.ClusterIdCompleter"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 115 | <bean id="roleCompleter" class="org.onlab.onos.cli.net.RoleCompleter"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 116 | <bean id="hostIdCompleter" class="org.onlab.onos.cli.net.HostIdCompleter"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 117 | <bean id="intentIdCompleter" class="org.onlab.onos.cli.net.IntentIdCompleter"/> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 118 | <bean id="flowRuleStatusCompleter" class="org.onlab.onos.cli.net.FlowRuleStatusCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 119 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 120 | </blueprint> |