Thomas Vachuska | 7d693f5 | 2014-10-21 19:17:57 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2014-present Open Networking Laboratory |
Thomas Vachuska | 7d693f5 | 2014-10-21 19:17:57 -0700 | [diff] [blame] | 3 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 4 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ~ you may not use this file except in compliance with the License. |
| 6 | ~ You may obtain a copy of the License at |
Thomas Vachuska | 7d693f5 | 2014-10-21 19:17:57 -0700 | [diff] [blame] | 7 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 8 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ~ |
| 10 | ~ Unless required by applicable law or agreed to in writing, software |
| 11 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ~ See the License for the specific language governing permissions and |
| 14 | ~ limitations under the License. |
Thomas Vachuska | 7d693f5 | 2014-10-21 19:17:57 -0700 | [diff] [blame] | 15 | --> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 16 | <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"> |
| 17 | |
| 18 | <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0"> |
Yuta HIGUCHI | 46e30cc | 2017-02-02 12:29:34 -0800 | [diff] [blame] | 19 | |
| 20 | <command> |
| 21 | <action class="org.onosproject.cli.PrettyJson"/> |
| 22 | </command> |
| 23 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 24 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 25 | <action class="org.onosproject.cli.SummaryCommand"/> |
tom | 9b4030d | 2014-10-06 10:39:03 -0700 | [diff] [blame] | 26 | </command> |
Yuta HIGUCHI | 6a46283 | 2014-11-23 23:56:03 -0800 | [diff] [blame] | 27 | <command> |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 28 | <action class="org.onosproject.cli.security.ReviewCommand"/> |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 29 | <completers> |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 30 | <ref component-id="reviewAppNameCompleter"/> |
Changhoon Yoon | 23dee8f | 2015-05-18 22:19:49 +0900 | [diff] [blame] | 31 | </completers> |
| 32 | </command> |
| 33 | |
| 34 | <command> |
Saurav Das | 2443119 | 2016-03-07 19:13:00 -0800 | [diff] [blame] | 35 | <action class="org.onosproject.cli.net.FlowObjectiveNextListCommand"/> |
| 36 | </command> |
| 37 | |
| 38 | <command> |
Saurav Das | b5c236e | 2016-06-07 10:08:06 -0700 | [diff] [blame] | 39 | <action class="org.onosproject.cli.net.FlowObjectivePendingNextCommand"/> |
| 40 | </command> |
| 41 | |
| 42 | <command> |
Xin Jin | 313708b | 2015-07-09 13:43:04 -0700 | [diff] [blame] | 43 | <action class="org.onosproject.cli.net.FlowObjectiveCompositionCommand"/> |
| 44 | </command> |
| 45 | |
| 46 | <command> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 47 | <action class="org.onosproject.cli.app.ApplicationsListCommand"/> |
| 48 | </command> |
| 49 | |
| 50 | <command> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 51 | <action class="org.onosproject.cli.app.ApplicationCommand"/> |
| 52 | <completers> |
| 53 | <ref component-id="appCommandCompleter"/> |
| 54 | <ref component-id="appNameCompleter"/> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 55 | </completers> |
| 56 | </command> |
| 57 | |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 58 | <command> |
Thomas Vachuska | 6d697f1 | 2015-03-08 20:59:50 -0700 | [diff] [blame] | 59 | <action class="org.onosproject.cli.cfg.ComponentConfigCommand"/> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 60 | <completers> |
Thomas Vachuska | 6d697f1 | 2015-03-08 20:59:50 -0700 | [diff] [blame] | 61 | <ref component-id="cfgCommandCompleter"/> |
| 62 | <ref component-id="componentNameCompleter"/> |
Ray Milkey | fb6655e | 2015-04-10 10:50:54 -0700 | [diff] [blame] | 63 | <ref component-id="componentPropertyNameCompleter"/> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 64 | </completers> |
| 65 | </command> |
| 66 | |
| 67 | <command> |
Thomas Vachuska | 96d55b1 | 2015-05-11 08:52:03 -0700 | [diff] [blame] | 68 | <action class="org.onosproject.cli.cfg.NetworkConfigRegistryCommand"/> |
| 69 | </command> |
| 70 | |
| 71 | <command> |
| 72 | <action class="org.onosproject.cli.cfg.NetworkConfigCommand"/> |
HIGUCHI Yuta | 4f074c0 | 2015-11-23 10:15:53 -0800 | [diff] [blame] | 73 | <completers> |
| 74 | <ref component-id="subjectClassKeyCompleter"/> |
| 75 | <ref component-id="subjectKeyCompleter"/> |
| 76 | <ref component-id="configKeyCompleter"/> |
| 77 | </completers> |
Thomas Vachuska | 96d55b1 | 2015-05-11 08:52:03 -0700 | [diff] [blame] | 78 | </command> |
| 79 | |
| 80 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 81 | <action class="org.onosproject.cli.MetricsListCommand"/> |
Flavio Castro | 4b51941 | 2015-07-24 12:57:59 -0700 | [diff] [blame] | 82 | <completers> |
| 83 | <ref component-id="metricNameCompleter"/> |
| 84 | </completers> |
Yuta HIGUCHI | 6a46283 | 2014-11-23 23:56:03 -0800 | [diff] [blame] | 85 | </command> |
| 86 | |
tom | 9b4030d | 2014-10-06 10:39:03 -0700 | [diff] [blame] | 87 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 88 | <action class="org.onosproject.cli.NodesListCommand"/> |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 89 | </command> |
Ayaka Koshibe | 45503ce | 2014-10-14 11:26:45 -0700 | [diff] [blame] | 90 | |
| 91 | <command> |
Thomas Vachuska | 4cfcc56 | 2015-06-03 09:51:02 -0700 | [diff] [blame] | 92 | <action class="org.onosproject.cli.UiViewListCommand"/> |
| 93 | </command> |
| 94 | |
| 95 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 96 | <action class="org.onosproject.cli.RolesCommand"/> |
Ayaka Koshibe | 45503ce | 2014-10-14 11:26:45 -0700 | [diff] [blame] | 97 | </command> |
tom | 9710fb4 | 2014-09-29 11:35:28 -0700 | [diff] [blame] | 98 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 99 | <action class="org.onosproject.cli.MastersListCommand"/> |
Thomas Vachuska | e0f804a | 2014-10-27 23:40:48 -0700 | [diff] [blame] | 100 | </command> |
| 101 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 102 | <action class="org.onosproject.cli.BalanceMastersCommand"/> |
Thomas Vachuska | e02e11c | 2014-11-24 16:13:52 -0800 | [diff] [blame] | 103 | </command> |
| 104 | <command> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 105 | <action class="org.onosproject.cli.app.ApplicationIdListCommand"/> |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 106 | </command> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 107 | |
alshabib | a7f7ca8 | 2014-09-22 11:41:23 -0700 | [diff] [blame] | 108 | <command> |
Jonathan Hart | 1d00639 | 2016-02-11 09:12:56 -0800 | [diff] [blame] | 109 | <action class="org.onosproject.cli.net.McastShowCommand"/> |
| 110 | </command> |
| 111 | <command> |
| 112 | <action class="org.onosproject.cli.net.McastJoinCommand"/> |
| 113 | </command> |
| 114 | <command> |
| 115 | <action class="org.onosproject.cli.net.McastDeleteCommand"/> |
| 116 | </command> |
| 117 | |
| 118 | <command> |
Thomas Vachuska | 5c2f813 | 2015-04-08 23:09:08 -0700 | [diff] [blame] | 119 | <action class="org.onosproject.cli.net.DriversListCommand"/> |
| 120 | <completers> |
| 121 | <ref component-id="driverNameCompleter"/> |
Jonathan Hart | a98ae9d | 2017-01-26 17:11:11 -0800 | [diff] [blame] | 122 | <null/> |
Thomas Vachuska | 5c2f813 | 2015-04-08 23:09:08 -0700 | [diff] [blame] | 123 | </completers> |
| 124 | </command> |
| 125 | |
| 126 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 127 | <action class="org.onosproject.cli.net.DevicesListCommand"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 128 | </command> |
| 129 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 130 | <action class="org.onosproject.cli.net.DevicePortsListCommand"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 131 | <completers> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 132 | <ref component-id="deviceIdCompleter"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 133 | </completers> |
| 134 | </command> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 135 | <command> |
Saurav Das | a2d3750 | 2016-03-25 17:50:40 -0700 | [diff] [blame] | 136 | <action class="org.onosproject.cli.net.DevicePortStateCommand"/> |
| 137 | <completers> |
| 138 | <ref component-id="deviceIdCompleter"/> |
| 139 | <ref component-id="portNumberCompleter"/> |
| 140 | <ref component-id="portStateCompleter"/> |
| 141 | <null/> |
| 142 | </completers> |
| 143 | </command> |
| 144 | <command> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 145 | <action class="org.onosproject.cli.net.DeviceControllersCommand"/> |
| 146 | <completers> |
| 147 | <ref component-id="deviceIdCompleter"/> |
| 148 | </completers> |
| 149 | </command> |
| 150 | <command> |
| 151 | <action class="org.onosproject.cli.net.DeviceSetControllersCommand"/> |
| 152 | <completers> |
| 153 | <ref component-id="deviceIdCompleter"/> |
| 154 | </completers> |
| 155 | </command> |
| 156 | <command> |
Aaron Kruglikov | 12faf8d | 2016-01-04 16:24:07 -0800 | [diff] [blame] | 157 | <action class="org.onosproject.cli.net.DeviceConfigGetterCommand"/> |
| 158 | <completers> |
| 159 | <ref component-id="deviceIdCompleter"/> |
Yuta HIGUCHI | 57ba1e1 | 2017-04-26 15:51:47 -0700 | [diff] [blame] | 160 | <null/> |
Aaron Kruglikov | 12faf8d | 2016-01-04 16:24:07 -0800 | [diff] [blame] | 161 | </completers> |
| 162 | </command> |
| 163 | <command> |
Andreas Papazois | c93117d | 2016-01-13 15:19:27 +0200 | [diff] [blame] | 164 | <action class="org.onosproject.cli.net.DeviceConfigSetterCommand"/> |
| 165 | <completers> |
| 166 | <ref component-id="deviceIdCompleter"/> |
Yuta HIGUCHI | 57ba1e1 | 2017-04-26 15:51:47 -0700 | [diff] [blame] | 167 | <null/> |
Andreas Papazois | c93117d | 2016-01-13 15:19:27 +0200 | [diff] [blame] | 168 | </completers> |
| 169 | </command> |
| 170 | <command> |
Andrea Campanella | d8d92db | 2016-01-14 16:24:41 -0800 | [diff] [blame] | 171 | <action class="org.onosproject.cli.net.DevicePortGetterCommand"/> |
| 172 | <completers> |
| 173 | <ref component-id="deviceIdCompleter"/> |
Yuta HIGUCHI | 57ba1e1 | 2017-04-26 15:51:47 -0700 | [diff] [blame] | 174 | <null/> |
Andrea Campanella | d8d92db | 2016-01-14 16:24:41 -0800 | [diff] [blame] | 175 | </completers> |
| 176 | </command> |
| 177 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 178 | <action class="org.onosproject.cli.net.DeviceRemoveCommand"/> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 179 | <completers> |
| 180 | <ref component-id="deviceIdCompleter"/> |
| 181 | </completers> |
| 182 | </command> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 183 | <command> |
Andreas Papazois | 1dff77c | 2016-02-16 16:27:33 +0200 | [diff] [blame] | 184 | <action class="org.onosproject.cli.net.DeviceInterfaceAddCommand"/> |
| 185 | <completers> |
| 186 | <ref component-id="deviceIdCompleter"/> |
| 187 | </completers> |
| 188 | </command> |
| 189 | <command> |
Andreas Papazois | 92e4a04 | 2016-02-24 15:29:30 +0200 | [diff] [blame] | 190 | <action class="org.onosproject.cli.net.DeviceInterfaceRemoveCommand"/> |
| 191 | <completers> |
| 192 | <ref component-id="deviceIdCompleter"/> |
| 193 | </completers> |
| 194 | </command> |
| 195 | <command> |
Andreas Papazois | 1ed54cf | 2016-05-04 16:22:40 +0300 | [diff] [blame] | 196 | <action class="org.onosproject.cli.net.DeviceInterfacesListCommand"/> |
| 197 | <completers> |
| 198 | <ref component-id="deviceIdCompleter"/> |
| 199 | </completers> |
| 200 | </command> |
| 201 | <command> |
Jordi Ortiz | 4c93e27 | 2017-01-30 13:25:51 +0100 | [diff] [blame] | 202 | <action class="org.onosproject.cli.net.MeterAddCommand"/> |
alshabib | 58fe6dc | 2015-08-19 17:16:13 -0700 | [diff] [blame] | 203 | <completers> |
| 204 | <ref component-id="deviceIdCompleter"/> |
| 205 | </completers> |
| 206 | </command> |
| 207 | <command> |
Jordi Ortiz | 1d8cc49 | 2017-01-27 14:28:53 +0100 | [diff] [blame] | 208 | <action class="org.onosproject.cli.net.MeterRemoveCommand"/> |
| 209 | <completers> |
| 210 | <ref component-id="deviceIdCompleter"/> |
| 211 | </completers> |
| 212 | </command> |
| 213 | <command> |
sangyun-han | 483731c | 2016-06-06 12:03:16 +0900 | [diff] [blame] | 214 | <action class="org.onosproject.cli.net.MetersListCommand"/> |
alshabib | 58fe6dc | 2015-08-19 17:16:13 -0700 | [diff] [blame] | 215 | <completers> |
| 216 | <ref component-id="deviceIdCompleter"/> |
| 217 | </completers> |
| 218 | </command> |
| 219 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 220 | <action class="org.onosproject.cli.net.DeviceRoleCommand"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 221 | <completers> |
| 222 | <ref component-id="deviceIdCompleter"/> |
tom | a6235a5 | 2014-10-15 13:25:39 -0700 | [diff] [blame] | 223 | <ref component-id="nodeIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 224 | <ref component-id="roleCompleter"/> |
tom | 5f35f7c | 2014-09-08 18:38:19 -0700 | [diff] [blame] | 225 | </completers> |
| 226 | </command> |
Yuta HIGUCHI | 5f3c033 | 2017-01-09 17:41:07 -0800 | [diff] [blame] | 227 | |
Thomas Vachuska | 8ceee94 | 2015-04-14 16:53:57 -0700 | [diff] [blame] | 228 | <command> |
| 229 | <action class="org.onosproject.cli.net.AnnotateDeviceCommand"/> |
| 230 | <completers> |
| 231 | <ref component-id="deviceIdCompleter"/> |
Yuta HIGUCHI | 5f3c033 | 2017-01-09 17:41:07 -0800 | [diff] [blame] | 232 | <ref component-id="annotationKeysCompleter"/> |
HIGUCHI Yuta | 9803071 | 2015-10-20 13:21:49 -0700 | [diff] [blame] | 233 | <null/> |
Yuta HIGUCHI | 5f3c033 | 2017-01-09 17:41:07 -0800 | [diff] [blame] | 234 | </completers> |
| 235 | </command> |
| 236 | |
| 237 | <command> |
Yuta HIGUCHI | 7438f5a | 2017-02-15 22:09:46 -0800 | [diff] [blame] | 238 | <action class="org.onosproject.cli.net.AnnotatePortCommand"/> |
| 239 | <completers> |
| 240 | <ref component-id="connectPointCompleter"/> |
| 241 | <ref component-id="annotationKeysCompleter"/> |
| 242 | <null/> |
| 243 | </completers> |
| 244 | </command> |
| 245 | |
| 246 | <command> |
Yuta HIGUCHI | 5f3c033 | 2017-01-09 17:41:07 -0800 | [diff] [blame] | 247 | <action class="org.onosproject.cli.net.AnnotateLinkCommand"/> |
| 248 | <completers> |
| 249 | <ref component-id="connectPointCompleter"/> |
| 250 | <ref component-id="peerConnectPointCompleter"/> |
| 251 | <ref component-id="annotationKeysCompleter"/> |
HIGUCHI Yuta | 9803071 | 2015-10-20 13:21:49 -0700 | [diff] [blame] | 252 | <null/> |
Thomas Vachuska | 8ceee94 | 2015-04-14 16:53:57 -0700 | [diff] [blame] | 253 | </completers> |
| 254 | </command> |
tom | c290a12 | 2014-09-08 14:27:13 -0700 | [diff] [blame] | 255 | |
| 256 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 257 | <action class="org.onosproject.cli.net.LinksListCommand"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 258 | <completers> |
| 259 | <ref component-id="deviceIdCompleter"/> |
| 260 | </completers> |
| 261 | </command> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 262 | |
| 263 | <command> |
Aaron Kruglikov | a2b5915 | 2015-06-24 14:01:41 -0700 | [diff] [blame] | 264 | <action class="org.onosproject.cli.net.EdgePortsListCommand"/> |
| 265 | <completers> |
| 266 | <ref component-id="deviceIdCompleter"/> |
Jonathan Hart | 6ff6ffe | 2016-09-09 11:55:50 -0700 | [diff] [blame] | 267 | <null/> |
Aaron Kruglikov | a2b5915 | 2015-06-24 14:01:41 -0700 | [diff] [blame] | 268 | </completers> |
| 269 | </command> |
| 270 | |
| 271 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 272 | <action class="org.onosproject.cli.net.TopologyCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 273 | </command> |
| 274 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 275 | <action class="org.onosproject.cli.net.PathListCommand"/> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 276 | <completers> |
| 277 | <ref component-id="deviceIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 278 | <ref component-id="deviceIdCompleter"/> |
Yuta HIGUCHI | 33485fb | 2017-01-25 20:13:30 -0800 | [diff] [blame] | 279 | <null/> <!-- no more arguments --> |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 280 | </completers> |
| 281 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 282 | |
tom | 9eb57fb | 2014-09-11 19:42:38 -0700 | [diff] [blame] | 283 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 284 | <action class="org.onosproject.cli.net.IntentsListCommand"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 285 | </command> |
| 286 | <command> |
Thomas Vachuska | cdac6e8 | 2016-02-29 19:21:49 -0800 | [diff] [blame] | 287 | <action class="org.onosproject.cli.net.IntentListCompilers"/> |
| 288 | </command> |
| 289 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 290 | <action class="org.onosproject.cli.net.IntentRemoveCommand"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 291 | <completers> |
Ray Milkey | d088e8a | 2015-04-07 14:56:57 -0700 | [diff] [blame] | 292 | <ref component-id="appIdWithIntentNameCompleter"/> |
Brian O'Connor | 264cb99 | 2015-06-04 17:16:57 -0700 | [diff] [blame] | 293 | <ref component-id="intentKeyCompleter"/> |
Brian O'Connor | 66630c8 | 2014-10-02 21:08:19 -0700 | [diff] [blame] | 294 | </completers> |
| 295 | </command> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 296 | <command> |
Brian O'Connor | 72df5b1 | 2015-06-02 16:50:18 -0700 | [diff] [blame] | 297 | <action class="org.onosproject.cli.net.IntentPurgeCommand"/> |
| 298 | </command> |
| 299 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 300 | <action class="org.onosproject.cli.net.AddHostToHostIntentCommand"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 301 | <completers> |
tom | 6db1f0a | 2014-10-07 09:12:29 -0700 | [diff] [blame] | 302 | <ref component-id="hostIdCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 303 | <ref component-id="hostIdCompleter"/> |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 304 | </completers> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 305 | <optional-completers> |
Charles M.C. Chan | 2d89eca | 2015-04-29 21:32:17 +0800 | [diff] [blame] | 306 | <entry key="-t" value-ref="ethTypeCompleter"/> |
| 307 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
| 308 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 309 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 310 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 311 | <entry key="-a" value-ref="allAppNameCompleter"/> |
Michele Santuari | 05b882c | 2015-11-25 09:40:46 +0100 | [diff] [blame] | 312 | <entry key="-e" value-ref="encapTypeCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 313 | </optional-completers> |
tom | f5c9d92 | 2014-10-03 15:22:03 -0700 | [diff] [blame] | 314 | </command> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 315 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 316 | <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 317 | <completers> |
| 318 | <ref component-id="connectPointCompleter"/> |
| 319 | <ref component-id="connectPointCompleter"/> |
Yuta HIGUCHI | cd31850 | 2016-09-01 14:25:58 -0700 | [diff] [blame] | 320 | <null/> <!-- no more argument --> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 321 | </completers> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 322 | <optional-completers> |
| 323 | <entry key="-t" value-ref="ethTypeCompleter"/> |
Jonathan Hart | 6e94828 | 2014-11-17 22:50:42 -0800 | [diff] [blame] | 324 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 325 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 326 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 327 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 328 | <entry key="-a" value-ref="allAppNameCompleter"/> |
Michele Santuari | 05b882c | 2015-11-25 09:40:46 +0100 | [diff] [blame] | 329 | <entry key="-e" value-ref="encapTypeCompleter"/> |
Yuta HIGUCHI | cd31850 | 2016-09-01 14:25:58 -0700 | [diff] [blame] | 330 | <entry key="-r" value-ref="nullCompleter"/> <!-- option has no argument --> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 331 | </optional-completers> |
Ray Milkey | a058c73 | 2014-10-08 13:52:34 -0700 | [diff] [blame] | 332 | </command> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 333 | <command> |
sangyun-han | 483731c | 2016-06-06 12:03:16 +0900 | [diff] [blame] | 334 | <action class="org.onosproject.cli.net.GetStatisticsCommand"/> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 335 | <completers> |
| 336 | <ref component-id="connectPointCompleter"/> |
| 337 | </completers> |
alshabib | 23a8d7c | 2014-10-22 21:53:39 -0700 | [diff] [blame] | 338 | </command> |
| 339 | <command> |
sangyun-han | 483731c | 2016-06-06 12:03:16 +0900 | [diff] [blame] | 340 | <action class="org.onosproject.cli.net.GetFlowStatisticsCommand"/> |
ssyoon90 | a98825a | 2015-08-26 00:48:15 +0900 | [diff] [blame] | 341 | <completers> |
| 342 | <ref component-id="deviceIdCompleter"/> |
| 343 | </completers> |
| 344 | </command> |
| 345 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 346 | <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/> |
Ray Milkey | 0742ec9 | 2014-10-13 08:39:55 -0700 | [diff] [blame] | 347 | <completers> |
| 348 | <ref component-id="connectPointCompleter"/> |
| 349 | </completers> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 350 | <optional-completers> |
| 351 | <entry key="-t" value-ref="ethTypeCompleter"/> |
Jonathan Hart | 6e94828 | 2014-11-17 22:50:42 -0800 | [diff] [blame] | 352 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 353 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 354 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 355 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 356 | <entry key="-a" value-ref="allAppNameCompleter"/> |
Michele Santuari | 05b882c | 2015-11-25 09:40:46 +0100 | [diff] [blame] | 357 | <entry key="-e" value-ref="encapTypeCompleter"/> |
Ray Milkey | 9fdf1ea | 2014-10-21 09:48:02 -0700 | [diff] [blame] | 358 | </optional-completers> |
Ray Milkey | 0742ec9 | 2014-10-13 08:39:55 -0700 | [diff] [blame] | 359 | </command> |
| 360 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 361 | <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/> |
Michele Santuari | 4a33807 | 2014-11-05 18:38:55 +0100 | [diff] [blame] | 362 | <completers> |
| 363 | <ref component-id="connectPointCompleter"/> |
| 364 | </completers> |
| 365 | <optional-completers> |
| 366 | <entry key="-t" value-ref="ethTypeCompleter"/> |
Pavlin Radoslavov | 70761df | 2015-03-09 11:05:49 -0700 | [diff] [blame] | 367 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 368 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 369 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 370 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 371 | <entry key="-a" value-ref="allAppNameCompleter"/> |
Michele Santuari | 05b882c | 2015-11-25 09:40:46 +0100 | [diff] [blame] | 372 | <entry key="-e" value-ref="encapTypeCompleter"/> |
Michele Santuari | 4a33807 | 2014-11-05 18:38:55 +0100 | [diff] [blame] | 373 | </optional-completers> |
| 374 | </command> |
| 375 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 376 | <action class="org.onosproject.cli.net.IntentPushTestCommand"/> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 377 | <completers> |
| 378 | <ref component-id="connectPointCompleter"/> |
| 379 | <ref component-id="connectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 380 | <ref component-id="nullCompleter"/> |
Brian O'Connor | 1aa99eb | 2014-10-10 16:18:58 -0700 | [diff] [blame] | 381 | </completers> |
| 382 | </command> |
Brian O'Connor | fe0f4b1 | 2014-10-30 21:19:02 -0700 | [diff] [blame] | 383 | <command> |
Brian O'Connor | 66cfbfa | 2015-02-17 18:17:32 -0800 | [diff] [blame] | 384 | <action class="org.onosproject.cli.net.IntentCycleCommand"/> |
| 385 | <completers> |
| 386 | <ref component-id="connectPointCompleter"/> |
| 387 | <ref component-id="connectPointCompleter"/> |
| 388 | <ref component-id="nullCompleter"/> |
Brian O'Connor | 66cfbfa | 2015-02-17 18:17:32 -0800 | [diff] [blame] | 389 | </completers> |
| 390 | </command> |
| 391 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 392 | <action class="org.onosproject.cli.net.RandomIntentCommand"/> |
Brian O'Connor | 6741a5f | 2014-11-19 20:40:11 -0800 | [diff] [blame] | 393 | <completers> |
| 394 | <ref component-id="nullCompleter"/> |
Brian O'Connor | 6741a5f | 2014-11-19 20:40:11 -0800 | [diff] [blame] | 395 | </completers> |
| 396 | </command> |
| 397 | <command> |
HIGUCHI Yuta | 848324f | 2015-12-04 21:11:26 -0800 | [diff] [blame] | 398 | <action class="org.onosproject.cli.net.ResourcesCommand"/> |
| 399 | <completers> |
| 400 | <ref component-id="deviceIdCompleter"/> |
| 401 | <ref component-id="portNumberCompleter"/> |
| 402 | </completers> |
| 403 | </command> |
| 404 | <command> |
| 405 | <action class="org.onosproject.cli.net.AllocationsCommand"/> |
| 406 | <completers> |
| 407 | <ref component-id="deviceIdCompleter"/> |
| 408 | <ref component-id="portNumberCompleter"/> |
| 409 | </completers> |
| 410 | </command> |
| 411 | <command> |
| 412 | <action class="org.onosproject.cli.net.TestAllocateResource"/> |
| 413 | <completers> |
| 414 | <ref component-id="deviceIdCompleter"/> |
| 415 | <ref component-id="portNumberCompleter"/> |
| 416 | </completers> |
| 417 | </command> |
| 418 | |
Ayaka Koshibe | 4699b29 | 2015-04-28 14:33:10 -0700 | [diff] [blame] | 419 | <command> |
Yuta HIGUCHI | a107172 | 2016-12-07 20:21:16 -0800 | [diff] [blame] | 420 | <action class="org.onosproject.cli.net.TestProtectionEndpointIntentCommand"/> |
| 421 | <completers> |
| 422 | <ref component-id="deviceIdCompleter"/> |
| 423 | <ref component-id="deviceIdCompleter"/> |
| 424 | <null/> |
| 425 | </completers> |
| 426 | </command> |
| 427 | |
| 428 | <command> |
| 429 | <action class="org.onosproject.cli.net.AddProtectedTransportIntentCommand"/> |
| 430 | <completers> |
| 431 | <ref component-id="deviceIdCompleter"/> |
| 432 | <ref component-id="deviceIdCompleter"/> |
| 433 | <null/> |
| 434 | </completers> |
| 435 | </command> |
| 436 | |
| 437 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 438 | <action class="org.onosproject.cli.net.ClustersListCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 439 | </command> |
| 440 | <command> |
Jonathan Hart | 054da97 | 2015-02-18 17:30:28 -0800 | [diff] [blame] | 441 | <action class="org.onosproject.cli.net.PartitionsListCommand"/> |
| 442 | </command> |
| 443 | <command> |
Madan Jampani | a89f8f9 | 2015-04-01 14:39:54 -0700 | [diff] [blame] | 444 | <action class="org.onosproject.cli.net.MapsListCommand"/> |
| 445 | </command> |
| 446 | <command> |
Madan Jampani | b5d72d5 | 2015-04-03 16:53:50 -0700 | [diff] [blame] | 447 | <action class="org.onosproject.cli.net.CountersListCommand"/> |
| 448 | </command> |
| 449 | <command> |
Madan Jampani | 35708a9 | 2016-07-06 10:48:19 -0700 | [diff] [blame] | 450 | <action class="org.onosproject.cli.net.QueuesListCommand"/> |
| 451 | </command> |
| 452 | <command> |
Madan Jampani | bff6d8f | 2015-03-31 16:53:47 -0700 | [diff] [blame] | 453 | <action class="org.onosproject.cli.net.TransactionsCommand"/> |
| 454 | </command> |
| 455 | <command> |
Madan Jampani | aac5888 | 2016-08-31 14:24:31 -0700 | [diff] [blame] | 456 | <action class="org.onosproject.cli.net.CounterCommand"/> |
| 457 | </command> |
| 458 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 459 | <action class="org.onosproject.cli.net.ClusterDevicesCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 460 | <completers> |
| 461 | <ref component-id="clusterIdCompleter"/> |
| 462 | </completers> |
| 463 | </command> |
| 464 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 465 | <action class="org.onosproject.cli.net.ClusterLinksCommand"/> |
tom | 13cb485 | 2014-09-11 12:44:17 -0700 | [diff] [blame] | 466 | <completers> |
| 467 | <ref component-id="clusterIdCompleter"/> |
| 468 | </completers> |
| 469 | </command> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 470 | |
| 471 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 472 | <action class="org.onosproject.cli.net.HostsListCommand"/> |
Ayaka Koshibe | 43530be | 2014-09-15 11:14:52 -0700 | [diff] [blame] | 473 | </command> |
Jonathan Hart | 61d4ebc | 2014-10-29 11:08:26 -0700 | [diff] [blame] | 474 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 475 | <action class="org.onosproject.cli.net.HostRemoveCommand"/> |
Thomas Vachuska | 3360160 | 2014-11-19 03:32:15 -0800 | [diff] [blame] | 476 | <completers> |
| 477 | <ref component-id="hostIdCompleter"/> |
Thomas Vachuska | 3360160 | 2014-11-19 03:32:15 -0800 | [diff] [blame] | 478 | </completers> |
| 479 | </command> |
| 480 | <command> |
Jonathan Hart | eb8c947 | 2015-08-05 07:43:13 -0700 | [diff] [blame] | 481 | <action class="org.onosproject.cli.net.InterfacesListCommand"/> |
| 482 | </command> |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 483 | <command> |
Jonathan Hart | 0bdf837 | 2015-10-08 14:30:36 -0700 | [diff] [blame] | 484 | <action class="org.onosproject.cli.net.InterfaceAddCommand"/> |
Jonathan Hart | 7dbe629 | 2015-11-10 08:33:17 -0800 | [diff] [blame] | 485 | <completers> |
| 486 | <ref component-id="connectPointCompleter" /> |
| 487 | <ref component-id="placeholderCompleter" /> |
| 488 | </completers> |
Jonathan Hart | 0bdf837 | 2015-10-08 14:30:36 -0700 | [diff] [blame] | 489 | </command> |
| 490 | <command> |
| 491 | <action class="org.onosproject.cli.net.InterfaceRemoveCommand"/> |
| 492 | <completers> |
| 493 | <ref component-id="connectPointCompleter"/> |
Jonathan Hart | fce5147 | 2017-01-26 16:57:33 -0800 | [diff] [blame] | 494 | <ref component-id="interfaceNameCompleter"/> |
| 495 | <null/> |
Jonathan Hart | 0bdf837 | 2015-10-08 14:30:36 -0700 | [diff] [blame] | 496 | </completers> |
| 497 | </command> |
| 498 | <command> |
Jonathan Hart | 3260069 | 2015-03-09 10:38:40 -0700 | [diff] [blame] | 499 | <action class="org.onosproject.cli.net.GroupsListCommand"/> |
Charles Chan | f38aca7 | 2016-02-18 13:40:18 -0800 | [diff] [blame] | 500 | <completers> |
| 501 | <ref component-id="groupStatusCompleter"/> |
| 502 | <ref component-id="deviceIdCompleter"/> |
| 503 | <null/> |
| 504 | </completers> |
Jonathan Hart | 3260069 | 2015-03-09 10:38:40 -0700 | [diff] [blame] | 505 | </command> |
| 506 | |
| 507 | <command> |
sangho | 538108b | 2015-04-08 14:29:20 -0700 | [diff] [blame] | 508 | <action class="org.onosproject.cli.net.DevicePortStatsCommand"/> |
Saurav Das | a2d3750 | 2016-03-25 17:50:40 -0700 | [diff] [blame] | 509 | <completers> |
| 510 | <ref component-id="deviceIdCompleter"/> |
| 511 | <ref component-id="portNumberCompleter"/> |
| 512 | <null/> |
| 513 | </completers> |
sangho | 538108b | 2015-04-08 14:29:20 -0700 | [diff] [blame] | 514 | </command> |
| 515 | |
| 516 | <command> |
Andreas Papazois | 25a98e7 | 2016-07-28 10:57:15 +0530 | [diff] [blame] | 517 | <action class="org.onosproject.cli.net.PortQueryVlansCommand"/> |
| 518 | <completers> |
| 519 | <ref component-id="connectPointCompleter"/> |
| 520 | </completers> |
| 521 | </command> |
| 522 | |
| 523 | <command> |
Srikanth Vavilapalli | 95810f5 | 2015-09-14 15:49:56 -0700 | [diff] [blame] | 524 | <action class="org.onosproject.cli.net.TableStatisticsCommand"/> |
| 525 | </command> |
| 526 | |
| 527 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 528 | <action class="org.onosproject.cli.net.FlowsListCommand"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 529 | <completers> |
alshabib | 144a294 | 2014-09-25 18:44:02 -0700 | [diff] [blame] | 530 | <ref component-id="flowRuleStatusCompleter"/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 531 | <ref component-id="deviceIdCompleter"/> |
Jonathan Hart | c7840bd | 2016-01-21 23:26:29 -0800 | [diff] [blame] | 532 | <ref component-id="placeholderCompleter"/> |
| 533 | <null/> |
alshabib | 99b8fdc | 2014-09-25 14:30:22 -0700 | [diff] [blame] | 534 | </completers> |
tom | 1380eee | 2014-09-24 09:22:02 -0700 | [diff] [blame] | 535 | </command> |
| 536 | |
| 537 | <command> |
Thomas Vachuska | 7f171b2 | 2015-08-21 12:49:08 -0700 | [diff] [blame] | 538 | <action class="org.onosproject.cli.net.PacketRequestsListCommand"/> |
| 539 | </command> |
| 540 | <command> |
| 541 | <action class="org.onosproject.cli.net.PacketProcessorsListCommand"/> |
| 542 | </command> |
Jonathan Hart | c4f681c | 2016-09-09 07:14:25 -0700 | [diff] [blame] | 543 | <command> |
| 544 | <action class="org.onosproject.cli.net.NeighbourHandlersListCommand"/> |
| 545 | </command> |
Thomas Vachuska | 7f171b2 | 2015-08-21 12:49:08 -0700 | [diff] [blame] | 546 | |
| 547 | <command> |
suibin zhang | cb7f0d1 | 2015-08-10 11:14:15 -0700 | [diff] [blame] | 548 | <action class="org.onosproject.cli.net.AddTestFlowsCommand"/> |
alshabib | 5afcbd7 | 2014-10-30 16:28:40 +0100 | [diff] [blame] | 549 | </command> |
Yuta HIGUCHI | c2bf3d8 | 2014-11-28 18:50:41 -0800 | [diff] [blame] | 550 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 551 | <action class="org.onosproject.cli.net.LeaderCommand"/> |
Yuta HIGUCHI | c2bf3d8 | 2014-11-28 18:50:41 -0800 | [diff] [blame] | 552 | </command> |
alshabib | 5afcbd7 | 2014-10-30 16:28:40 +0100 | [diff] [blame] | 553 | |
| 554 | <command> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 555 | <action class="org.onosproject.cli.net.WipeOutCommand"/> |
tom | 89b63c5 | 2014-09-16 09:19:51 -0700 | [diff] [blame] | 556 | </command> |
Michele Santuari | 4b6019e | 2014-12-19 11:31:45 +0100 | [diff] [blame] | 557 | <command> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 558 | <action class="org.onosproject.cli.net.AddMplsIntent"/> |
| 559 | <completers> |
| 560 | <ref component-id="connectPointCompleter"/> |
Ray Milkey | 2a6e445 | 2015-04-08 09:59:20 -0700 | [diff] [blame] | 561 | <ref component-id="connectPointCompleter"/> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 562 | </completers> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 563 | <optional-completers> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 564 | <entry key="-t" value-ref="ethTypeCompleter"/> |
| 565 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
| 566 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 567 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 568 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 569 | <entry key="-a" value-ref="allAppNameCompleter"/> |
| 570 | </optional-completers> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 571 | </command> |
Jonathan Hart | eb8c947 | 2015-08-05 07:43:13 -0700 | [diff] [blame] | 572 | |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 573 | <command> |
Jonathan Hart | bfc5c48 | 2016-04-05 18:57:00 -0700 | [diff] [blame] | 574 | <action class="org.onosproject.cli.net.RoutesListCommand"/> |
| 575 | </command> |
| 576 | <command> |
| 577 | <action class="org.onosproject.cli.net.RouteAddCommand"/> |
| 578 | </command> |
| 579 | <command> |
| 580 | <action class="org.onosproject.cli.net.RouteRemoveCommand"/> |
| 581 | </command> |
Jonathan Hart | fd17661 | 2016-04-11 10:42:10 -0700 | [diff] [blame] | 582 | <command> |
| 583 | <action class="org.onosproject.cli.net.NextHopsListCommand"/> |
| 584 | </command> |
Jonathan Hart | bfc5c48 | 2016-04-05 18:57:00 -0700 | [diff] [blame] | 585 | |
| 586 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 587 | <action class="org.onosproject.cli.net.GlobalLabelCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 588 | </command> |
| 589 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 590 | <action class="org.onosproject.cli.net.LabelResourceCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 591 | </command> |
| 592 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 593 | <action class="org.onosproject.cli.net.GlobalLabelPoolCreateCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 594 | </command> |
| 595 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 596 | <action class="org.onosproject.cli.net.LabelPoolCreateCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 597 | </command> |
| 598 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 599 | <action class="org.onosproject.cli.net.GlobalLabelPoolDestoryCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 600 | </command> |
| 601 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 602 | <action class="org.onosproject.cli.net.LabelPoolDestroyCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 603 | </command> |
| 604 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 605 | <action class="org.onosproject.cli.net.GlobalLabelReleaseCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 606 | </command> |
| 607 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 608 | <action class="org.onosproject.cli.net.LabelReleaseCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 609 | </command> |
| 610 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 611 | <action class="org.onosproject.cli.net.GlobalLabelApplyCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 612 | </command> |
| 613 | <command> |
samuel | 7a5691a | 2015-05-23 00:36:32 +0800 | [diff] [blame] | 614 | <action class="org.onosproject.cli.net.LabelApplyCommand"/> |
jcc | de3e92e | 2015-03-28 01:40:44 -0700 | [diff] [blame] | 615 | </command> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 616 | <!-- tunnel commands --> |
| 617 | <command> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 618 | <action class="org.onosproject.cli.net.TunnelBorrowCommand"/> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 619 | </command> |
| 620 | <command> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 621 | <action class="org.onosproject.cli.net.TunnelReturnCommand"/> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 622 | </command> |
| 623 | <command> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 624 | <action class="org.onosproject.cli.net.TunnelQueryCommand"/> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 625 | </command> |
| 626 | <command> |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 627 | <action class="org.onosproject.cli.net.TunnelQuerySubscriptionCommand"/> |
jcc | d869723 | 2015-05-05 14:42:23 +0800 | [diff] [blame] | 628 | </command> |
cheng fan | 7716ec9 | 2015-05-31 01:53:19 +0800 | [diff] [blame] | 629 | <command> |
| 630 | <action class="org.onosproject.cli.net.TunnelCreateCommand"/> |
| 631 | </command> |
| 632 | <command> |
| 633 | <action class="org.onosproject.cli.net.TunnelRemoveCommand"/> |
| 634 | </command> |
| 635 | <command> |
| 636 | <action class="org.onosproject.cli.net.TunnelUpdateCommand"/> |
| 637 | </command> |
Brian Stanke | e312fc7 | 2016-02-16 15:07:13 -0500 | [diff] [blame] | 638 | <!-- device key commands --> |
| 639 | <command> |
| 640 | <action class="org.onosproject.cli.net.DeviceKeyListCommand"/> |
| 641 | </command> |
| 642 | <command> |
| 643 | <action class="org.onosproject.cli.net.DeviceKeyAddCommand"/> |
| 644 | </command> |
| 645 | <command> |
| 646 | <action class="org.onosproject.cli.net.DeviceKeyRemoveCommand"/> |
| 647 | </command> |
| 648 | |
Jian Li | cf74444 | 2016-02-25 17:32:42 +0900 | [diff] [blame] | 649 | <!--region commands --> |
| 650 | <command> |
| 651 | <action class="org.onosproject.cli.net.RegionListCommand"/> |
| 652 | <completers> |
| 653 | <ref component-id="regionIdCompleter"/> |
| 654 | </completers> |
| 655 | </command> |
| 656 | <command> |
| 657 | <action class="org.onosproject.cli.net.RegionAddCommand"/> |
| 658 | <completers> |
| 659 | <null/> |
| 660 | <null/> |
| 661 | <ref component-id="regionTypeCompleter"/> |
Jian Li | 43a0b2f | 2016-02-29 10:01:54 -0800 | [diff] [blame] | 662 | <ref component-id="nodeIdCompleter"/> |
Jian Li | cf74444 | 2016-02-25 17:32:42 +0900 | [diff] [blame] | 663 | </completers> |
| 664 | </command> |
| 665 | <command> |
| 666 | <action class="org.onosproject.cli.net.RegionUpdateCommand"/> |
| 667 | <completers> |
| 668 | <ref component-id="regionIdCompleter"/> |
| 669 | <null/> |
| 670 | <ref component-id="regionTypeCompleter"/> |
Jian Li | 43a0b2f | 2016-02-29 10:01:54 -0800 | [diff] [blame] | 671 | <ref component-id="nodeIdCompleter"/> |
Jian Li | cf74444 | 2016-02-25 17:32:42 +0900 | [diff] [blame] | 672 | </completers> |
| 673 | </command> |
| 674 | <command> |
| 675 | <action class="org.onosproject.cli.net.RegionRemoveCommand"/> |
| 676 | <completers> |
| 677 | <ref component-id="regionIdCompleter"/> |
| 678 | </completers> |
| 679 | </command> |
| 680 | <command> |
| 681 | <action class="org.onosproject.cli.net.RegionAddDevicesCommand"/> |
| 682 | <completers> |
| 683 | <ref component-id="regionIdCompleter"/> |
| 684 | <ref component-id="deviceIdCompleter"/> |
| 685 | </completers> |
| 686 | </command> |
| 687 | <command> |
| 688 | <action class="org.onosproject.cli.net.RegionRemoveDevicesCommand"/> |
| 689 | <completers> |
| 690 | <ref component-id="regionIdCompleter"/> |
| 691 | <ref component-id="deviceIdCompleter"/> |
| 692 | </completers> |
| 693 | </command> |
Simon Hunt | c4ca710 | 2017-04-08 22:28:04 -0700 | [diff] [blame] | 694 | <command> |
| 695 | <action class="org.onosproject.cli.net.RegionAddPeerLocCommand"/> |
| 696 | <completers> |
| 697 | <ref component-id="regionIdCompleter"/> |
| 698 | </completers> |
| 699 | </command> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 700 | |
Thomas Vachuska | eb851cd | 2016-07-21 15:41:05 -0700 | [diff] [blame] | 701 | <!-- UI Layout commands --> |
| 702 | <command> |
| 703 | <action class="org.onosproject.cli.net.LayoutListCommand"/> |
| 704 | </command> |
| 705 | <command> |
| 706 | <action class="org.onosproject.cli.net.LayoutAddCommand"/> |
| 707 | </command> |
| 708 | <!--TODO: add this + completers |
| 709 | <command> |
| 710 | <action class="org.onosproject.cli.net.LayoutRemoveCommand"/> |
| 711 | </command> |
| 712 | --> |
| 713 | |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 714 | <!--virtual network commands --> |
| 715 | <command> |
| 716 | <action class="org.onosproject.cli.net.vnet.TenantListCommand"/> |
| 717 | </command> |
| 718 | <command> |
| 719 | <action class="org.onosproject.cli.net.vnet.TenantAddCommand"/> |
| 720 | </command> |
| 721 | <command> |
| 722 | <action class="org.onosproject.cli.net.vnet.TenantRemoveCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 723 | <completers> |
| 724 | <ref component-id="tenantCompleter"/> |
| 725 | <null/> |
| 726 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 727 | </command> |
| 728 | <command> |
| 729 | <action class="org.onosproject.cli.net.vnet.VirtualNetworkListCommand"/> |
| 730 | </command> |
| 731 | <command> |
| 732 | <action class="org.onosproject.cli.net.vnet.VirtualNetworkCreateCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 733 | <completers> |
| 734 | <ref component-id="tenantCompleter"/> |
| 735 | <ref component-id="nullCompleter"/> |
| 736 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 737 | </command> |
| 738 | <command> |
| 739 | <action class="org.onosproject.cli.net.vnet.VirtualNetworkRemoveCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 740 | <completers> |
| 741 | <ref component-id="virtualNetworkCompleter"/> |
| 742 | <null/> |
| 743 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 744 | </command> |
| 745 | <command> |
| 746 | <action class="org.onosproject.cli.net.vnet.VirtualDeviceListCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 747 | <completers> |
| 748 | <ref component-id="virtualNetworkCompleter"/> |
| 749 | <null/> |
| 750 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 751 | </command> |
| 752 | <command> |
| 753 | <action class="org.onosproject.cli.net.vnet.VirtualDeviceCreateCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 754 | <completers> |
| 755 | <ref component-id="virtualNetworkCompleter"/> |
| 756 | <null/> |
| 757 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 758 | </command> |
| 759 | <command> |
| 760 | <action class="org.onosproject.cli.net.vnet.VirtualDeviceRemoveCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 761 | <completers> |
| 762 | <ref component-id="virtualNetworkCompleter"/> |
| 763 | <ref component-id="virtualDeviceCompleter"/> |
| 764 | <ref component-id="nullCompleter"/> |
| 765 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 766 | </command> |
| 767 | <command> |
| 768 | <action class="org.onosproject.cli.net.vnet.VirtualLinkListCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 769 | <completers> |
| 770 | <ref component-id="virtualNetworkCompleter"/> |
| 771 | <null/> |
| 772 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 773 | </command> |
| 774 | <command> |
| 775 | <action class="org.onosproject.cli.net.vnet.VirtualLinkCreateCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 776 | <completers> |
| 777 | <ref component-id="virtualNetworkCompleter"/> |
| 778 | <ref component-id="virtualDeviceCompleter"/> |
| 779 | <ref component-id="virtualPortCompleter"/> |
| 780 | <ref component-id="virtualDeviceCompleter"/> |
| 781 | <ref component-id="virtualPortCompleter"/> |
| 782 | <null/> |
| 783 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 784 | </command> |
| 785 | <command> |
| 786 | <action class="org.onosproject.cli.net.vnet.VirtualLinkRemoveCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 787 | <completers> |
| 788 | <ref component-id="virtualNetworkCompleter"/> |
| 789 | <ref component-id="virtualDeviceCompleter"/> |
| 790 | <ref component-id="virtualPortCompleter"/> |
| 791 | <ref component-id="virtualDeviceCompleter"/> |
| 792 | <ref component-id="virtualPortCompleter"/> |
| 793 | <null/> |
| 794 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 795 | </command> |
| 796 | <command> |
| 797 | <action class="org.onosproject.cli.net.vnet.VirtualPortListCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 798 | <completers> |
| 799 | <ref component-id="virtualNetworkCompleter"/> |
| 800 | <ref component-id="virtualDeviceCompleter"/> |
| 801 | <null/> |
| 802 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 803 | </command> |
| 804 | <command> |
| 805 | <action class="org.onosproject.cli.net.vnet.VirtualPortCreateCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 806 | <completers> |
| 807 | <ref component-id="virtualNetworkCompleter"/> |
| 808 | <ref component-id="virtualDeviceCompleter"/> |
| 809 | <ref component-id="nullCompleter"/> |
| 810 | <ref component-id="deviceIdCompleter"/> |
| 811 | <ref component-id="portNumberCompleter"/> |
| 812 | <null/> |
| 813 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 814 | </command> |
| 815 | <command> |
Yoonseon Han | 6c60389 | 2016-09-01 11:52:21 -0700 | [diff] [blame] | 816 | <action class="org.onosproject.cli.net.vnet.VirtualPortBindCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 817 | <completers> |
| 818 | <ref component-id="virtualNetworkCompleter"/> |
| 819 | <ref component-id="virtualDeviceCompleter"/> |
| 820 | <ref component-id="virtualPortCompleter"/> |
| 821 | <ref component-id="deviceIdCompleter"/> |
| 822 | <ref component-id="portNumberCompleter"/> |
| 823 | <null/> |
| 824 | </completers> |
Yoonseon Han | 6c60389 | 2016-09-01 11:52:21 -0700 | [diff] [blame] | 825 | </command> |
| 826 | <command> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 827 | <action class="org.onosproject.cli.net.vnet.VirtualPortRemoveCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 828 | <completers> |
| 829 | <ref component-id="virtualNetworkCompleter"/> |
| 830 | <ref component-id="virtualDeviceCompleter"/> |
| 831 | <ref component-id="virtualPortCompleter"/> |
| 832 | <null/> |
| 833 | </completers> |
Brian Stanke | 5df1447 | 2016-03-11 19:34:38 -0500 | [diff] [blame] | 834 | </command> |
Claudine Chiu | 25f07be | 2016-06-27 16:21:21 +0000 | [diff] [blame] | 835 | <command> |
| 836 | <action class="org.onosproject.cli.net.vnet.VirtualHostListCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 837 | <completers> |
| 838 | <ref component-id="virtualNetworkCompleter"/> |
| 839 | <null/> |
| 840 | </completers> |
Claudine Chiu | 25f07be | 2016-06-27 16:21:21 +0000 | [diff] [blame] | 841 | </command> |
| 842 | <command> |
| 843 | <action class="org.onosproject.cli.net.vnet.VirtualHostCreateCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 844 | <completers> |
| 845 | <ref component-id="virtualNetworkCompleter"/> |
| 846 | <null/> |
| 847 | </completers> |
Claudine Chiu | 25f07be | 2016-06-27 16:21:21 +0000 | [diff] [blame] | 848 | </command> |
| 849 | <command> |
| 850 | <action class="org.onosproject.cli.net.vnet.VirtualHostRemoveCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 851 | <completers> |
| 852 | <ref component-id="virtualNetworkCompleter"/> |
| 853 | <ref component-id="virtualHostCompleter"/> |
| 854 | <null/> |
| 855 | </completers> |
Claudine Chiu | 25f07be | 2016-06-27 16:21:21 +0000 | [diff] [blame] | 856 | </command> |
Brian Stanke | 11f6d53 | 2016-07-05 16:17:59 -0400 | [diff] [blame] | 857 | <command> |
| 858 | <action class="org.onosproject.cli.net.vnet.VirtualNetworkIntentCreateCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 859 | <completers> |
| 860 | <ref component-id="virtualNetworkCompleter"/> |
| 861 | <null/> |
| 862 | </completers> |
Brian Stanke | 11f6d53 | 2016-07-05 16:17:59 -0400 | [diff] [blame] | 863 | </command> |
| 864 | <command> |
| 865 | <action class="org.onosproject.cli.net.vnet.VirtualNetworkIntentRemoveCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 866 | <completers> |
| 867 | <ref component-id="virtualNetworkCompleter"/> |
| 868 | <null/> |
| 869 | </completers> |
Brian Stanke | 11f6d53 | 2016-07-05 16:17:59 -0400 | [diff] [blame] | 870 | </command> |
Sangsik Yoon | f0b3ad8 | 2016-08-19 18:47:59 +0900 | [diff] [blame] | 871 | <command> |
Yoonseon Han | 2105832 | 2017-03-07 17:48:56 +0900 | [diff] [blame] | 872 | <action class="org.onosproject.cli.net.vnet.VirtualFlowsListCommand"/> |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 873 | <completers> |
| 874 | <ref component-id="virtualNetworkCompleter"/> |
| 875 | <ref component-id="flowRuleStatusCompleter"/> |
| 876 | <ref component-id="virtualDeviceCompleter"/> |
| 877 | <ref component-id="placeholderCompleter"/> |
| 878 | <null/> |
| 879 | </completers> |
Yoonseon Han | 2105832 | 2017-03-07 17:48:56 +0900 | [diff] [blame] | 880 | </command> |
| 881 | <command> |
Claudine Chiu | 1f036b8 | 2017-03-09 16:45:56 -0500 | [diff] [blame] | 882 | <action class="org.onosproject.cli.net.vnet.VirtualNetworkPacketRequestCommand"/> |
| 883 | <optional-completers> |
| 884 | <entry key="-t" value-ref="ethTypeCompleter"/> |
| 885 | <entry key="--ipProto" value-ref="ipProtocolCompleter"/> |
| 886 | <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/> |
| 887 | <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/> |
| 888 | <entry key="--extHdr" value-ref="ExtHeaderCompleter"/> |
| 889 | </optional-completers> |
| 890 | </command> |
| 891 | <command> |
Sangsik Yoon | f0b3ad8 | 2016-08-19 18:47:59 +0900 | [diff] [blame] | 892 | <action class="org.onosproject.cli.net.DpisListCommand"/> |
| 893 | </command> |
Yuta HIGUCHI | fadb9a3 | 2017-01-13 09:33:10 -0800 | [diff] [blame] | 894 | |
| 895 | <command> |
| 896 | <action class="org.onosproject.cli.net.IntentDetailsCommand"/> |
| 897 | <optional-completers> |
| 898 | <entry key="--id" value-ref="intentIdCompleter"/> |
| 899 | </optional-completers> |
| 900 | </command> |
| 901 | |
Yuta HIGUCHI | 3120778 | 2017-02-17 14:43:40 -0800 | [diff] [blame] | 902 | <command> |
| 903 | <action class="org.onosproject.cli.net.ConfigureLinkCommand"/> |
| 904 | <completers> |
| 905 | <ref component-id="connectPointCompleter"/> |
| 906 | <ref component-id="peerConnectPointCompleter"/> |
| 907 | <null/> |
| 908 | </completers> |
| 909 | <optional-completers> |
| 910 | <entry key="--type" value-ref="linkTypeCompleter"/> |
| 911 | </optional-completers> |
| 912 | </command> |
| 913 | |
| 914 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 915 | </command-bundle> |
| 916 | |
Changhoon Yoon | b856b81 | 2015-08-10 03:47:19 +0900 | [diff] [blame] | 917 | <bean id="reviewAppNameCompleter" class="org.onosproject.cli.security.ReviewApplicationNameCompleter"/> |
Thomas Vachuska | 1dcb048 | 2015-02-18 18:21:28 -0800 | [diff] [blame] | 918 | <bean id="appCommandCompleter" class="org.onosproject.cli.app.ApplicationCommandCompleter"/> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 919 | <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/> |
Ray Milkey | 95c5087 | 2015-04-14 14:32:31 -0700 | [diff] [blame] | 920 | <bean id="allAppNameCompleter" class="org.onosproject.cli.app.AllApplicationNamesCompleter"/> |
Ray Milkey | d088e8a | 2015-04-07 14:56:57 -0700 | [diff] [blame] | 921 | <bean id="appIdWithIntentNameCompleter" class="org.onosproject.cli.app.ApplicationIdWithIntentNameCompleter"/> |
Thomas Vachuska | 6d697f1 | 2015-03-08 20:59:50 -0700 | [diff] [blame] | 922 | <bean id="cfgCommandCompleter" class="org.onosproject.cli.cfg.ComponentConfigCommandCompleter"/> |
| 923 | <bean id="componentNameCompleter" class="org.onosproject.cli.cfg.ComponentNameCompleter"/> |
Ray Milkey | fb6655e | 2015-04-10 10:50:54 -0700 | [diff] [blame] | 924 | <bean id="componentPropertyNameCompleter" class="org.onosproject.cli.cfg.ComponentPropertyNameCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 925 | <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/> |
| 926 | <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/> |
HIGUCHI Yuta | 848324f | 2015-12-04 21:11:26 -0800 | [diff] [blame] | 927 | <bean id="portNumberCompleter" class="org.onosproject.cli.net.PortNumberCompleter"/> |
Saurav Das | a2d3750 | 2016-03-25 17:50:40 -0700 | [diff] [blame] | 928 | <bean id="portStateCompleter" class="org.onosproject.cli.net.PortStateCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 929 | <bean id="clusterIdCompleter" class="org.onosproject.cli.net.ClusterIdCompleter"/> |
| 930 | <bean id="roleCompleter" class="org.onosproject.cli.net.RoleCompleter"/> |
| 931 | <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/> |
Brian O'Connor | 264cb99 | 2015-06-04 17:16:57 -0700 | [diff] [blame] | 932 | <bean id="intentKeyCompleter" class="org.onosproject.cli.net.IntentKeyCompleter"/> |
Yuta HIGUCHI | fadb9a3 | 2017-01-13 09:33:10 -0800 | [diff] [blame] | 933 | <bean id="intentIdCompleter" class="org.onosproject.cli.net.completer.IntentIdCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 934 | <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/> |
Charles Chan | f38aca7 | 2016-02-18 13:40:18 -0800 | [diff] [blame] | 935 | <bean id="groupStatusCompleter" class="org.onosproject.cli.net.GroupStatusCompleter" /> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 936 | <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/> |
Ray Milkey | 9bbc944 | 2014-10-13 10:27:45 -0700 | [diff] [blame] | 937 | <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 938 | <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/> |
| 939 | <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/> |
Thomas Vachuska | 5c2f813 | 2015-04-08 23:09:08 -0700 | [diff] [blame] | 940 | <bean id="driverNameCompleter" class="org.onosproject.cli.net.DriverNameCompleter"/> |
Charles M.C. Chan | 2184de1 | 2015-04-26 02:24:53 +0800 | [diff] [blame] | 941 | <bean id="Icmp6TypeCompleter" class="org.onosproject.cli.net.Icmp6TypeCompleter"/> |
| 942 | <bean id="Icmp6CodeCompleter" class="org.onosproject.cli.net.Icmp6CodeCompleter"/> |
| 943 | <bean id="ExtHeaderCompleter" class="org.onosproject.cli.net.ExtHeaderCompleter"/> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 944 | |
Thomas Vachuska | c40d463 | 2015-04-09 16:55:03 -0700 | [diff] [blame] | 945 | <bean id="startStopCompleter" class="org.onosproject.cli.StartStopCompleter"/> |
Flavio Castro | 4b51941 | 2015-07-24 12:57:59 -0700 | [diff] [blame] | 946 | <bean id="metricNameCompleter" class="org.onosproject.cli.MetricNameCompleter"/> |
Thomas Vachuska | c40d463 | 2015-04-09 16:55:03 -0700 | [diff] [blame] | 947 | <bean id="upDownCompleter" class="org.onosproject.cli.UpDownCompleter"/> |
Michele Santuari | 05b882c | 2015-11-25 09:40:46 +0100 | [diff] [blame] | 948 | <bean id="encapTypeCompleter" class="org.onosproject.cli.net.EncapTypeCompleter"/> |
Thomas Vachuska | c40d463 | 2015-04-09 16:55:03 -0700 | [diff] [blame] | 949 | |
Jonathan Hart | 7dbe629 | 2015-11-10 08:33:17 -0800 | [diff] [blame] | 950 | <bean id="placeholderCompleter" class="org.onosproject.cli.PlaceholderCompleter"/> |
| 951 | |
HIGUCHI Yuta | 4f074c0 | 2015-11-23 10:15:53 -0800 | [diff] [blame] | 952 | <bean id="subjectClassKeyCompleter" class="org.onosproject.cli.cfg.SubjectClassKeyCompleter"/> |
| 953 | <bean id="subjectKeyCompleter" class="org.onosproject.cli.cfg.SubjectKeyCompleter"/> |
| 954 | <bean id="configKeyCompleter" class="org.onosproject.cli.cfg.ConfigKeyCompleter"/> |
| 955 | |
Jian Li | cf74444 | 2016-02-25 17:32:42 +0900 | [diff] [blame] | 956 | <bean id="regionIdCompleter" class="org.onosproject.cli.net.RegionIdCompleter"/> |
| 957 | <bean id="regionTypeCompleter" class="org.onosproject.cli.net.RegionTypeCompleter"/> |
Yuta HIGUCHI | 5f3c033 | 2017-01-09 17:41:07 -0800 | [diff] [blame] | 958 | |
| 959 | <bean id="annotationKeysCompleter" class="org.onosproject.cli.net.completer.AnnotationKeysCompleter"/> |
| 960 | |
| 961 | <bean id="peerConnectPointCompleter" class="org.onosproject.cli.net.completer.PeerConnectPointCompleter"/> |
Jonathan Hart | fce5147 | 2017-01-26 16:57:33 -0800 | [diff] [blame] | 962 | <bean id="interfaceNameCompleter" class="org.onosproject.cli.net.completer.InterfaceNameCompleter"/> |
Yuta HIGUCHI | 3120778 | 2017-02-17 14:43:40 -0800 | [diff] [blame] | 963 | |
| 964 | <bean id="linkTypeCompleter" class="org.onosproject.cli.net.completer.LinkTypeCompleter"/> |
| 965 | |
Harold Huang | 652ea83 | 2017-03-18 22:59:44 +0800 | [diff] [blame] | 966 | <bean id="tenantCompleter" class="org.onosproject.cli.net.vnet.TenantCompleter"/> |
| 967 | <bean id="virtualNetworkCompleter" class="org.onosproject.cli.net.vnet.VirtualNetworkCompleter"/> |
| 968 | <bean id="virtualDeviceCompleter" class="org.onosproject.cli.net.vnet.VirtualDeviceCompleter"/> |
| 969 | <bean id="virtualPortCompleter" class="org.onosproject.cli.net.vnet.VirtualPortCompleter"/> |
| 970 | <bean id="virtualHostCompleter" class="org.onosproject.cli.net.vnet.VirtualHostCompleter"/> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 971 | </blueprint> |