blob: 7d58b8239670a43e46cb0da7c4cb32a2c33bb269 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 ~ Copyright 2014-present Open Networking Laboratory
Thomas Vachuska7d693f52014-10-21 19:17:57 -07003 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 ~ 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 Vachuska7d693f52014-10-21 19:17:57 -07007 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 ~ 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 Vachuska7d693f52014-10-21 19:17:57 -070015 -->
tom0eb04ca2014-08-25 14:34:51 -070016<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 HIGUCHI46e30cc2017-02-02 12:29:34 -080019
20 <command>
21 <action class="org.onosproject.cli.PrettyJson"/>
22 </command>
23
tom0eb04ca2014-08-25 14:34:51 -070024 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080025 <action class="org.onosproject.cli.SummaryCommand"/>
tom9b4030d2014-10-06 10:39:03 -070026 </command>
Yuta HIGUCHI6a462832014-11-23 23:56:03 -080027 <command>
Changhoon Yoonb856b812015-08-10 03:47:19 +090028 <action class="org.onosproject.cli.security.ReviewCommand"/>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090029 <completers>
Changhoon Yoonb856b812015-08-10 03:47:19 +090030 <ref component-id="reviewAppNameCompleter"/>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090031 </completers>
32 </command>
33
34 <command>
Saurav Das24431192016-03-07 19:13:00 -080035 <action class="org.onosproject.cli.net.FlowObjectiveNextListCommand"/>
36 </command>
37
38 <command>
Saurav Dasb5c236e2016-06-07 10:08:06 -070039 <action class="org.onosproject.cli.net.FlowObjectivePendingNextCommand"/>
40 </command>
41
42 <command>
Xin Jin313708b2015-07-09 13:43:04 -070043 <action class="org.onosproject.cli.net.FlowObjectiveCompositionCommand"/>
44 </command>
45
46 <command>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080047 <action class="org.onosproject.cli.app.ApplicationsListCommand"/>
48 </command>
49
50 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080051 <action class="org.onosproject.cli.app.ApplicationCommand"/>
52 <completers>
53 <ref component-id="appCommandCompleter"/>
54 <ref component-id="appNameCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080055 </completers>
56 </command>
57
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080058 <command>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070059 <action class="org.onosproject.cli.cfg.ComponentConfigCommand"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080060 <completers>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070061 <ref component-id="cfgCommandCompleter"/>
62 <ref component-id="componentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -070063 <ref component-id="componentPropertyNameCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080064 </completers>
65 </command>
66
67 <command>
Thomas Vachuska96d55b12015-05-11 08:52:03 -070068 <action class="org.onosproject.cli.cfg.NetworkConfigRegistryCommand"/>
69 </command>
70
71 <command>
72 <action class="org.onosproject.cli.cfg.NetworkConfigCommand"/>
HIGUCHI Yuta4f074c02015-11-23 10:15:53 -080073 <completers>
74 <ref component-id="subjectClassKeyCompleter"/>
75 <ref component-id="subjectKeyCompleter"/>
76 <ref component-id="configKeyCompleter"/>
77 </completers>
Thomas Vachuska96d55b12015-05-11 08:52:03 -070078 </command>
79
80 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080081 <action class="org.onosproject.cli.MetricsListCommand"/>
Flavio Castro4b519412015-07-24 12:57:59 -070082 <completers>
83 <ref component-id="metricNameCompleter"/>
84 </completers>
Yuta HIGUCHI6a462832014-11-23 23:56:03 -080085 </command>
86
tom9b4030d2014-10-06 10:39:03 -070087 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080088 <action class="org.onosproject.cli.NodesListCommand"/>
tome4729872014-09-23 00:37:37 -070089 </command>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070090
91 <command>
Thomas Vachuska4cfcc562015-06-03 09:51:02 -070092 <action class="org.onosproject.cli.UiViewListCommand"/>
93 </command>
94
95 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080096 <action class="org.onosproject.cli.RolesCommand"/>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070097 </command>
tom9710fb42014-09-29 11:35:28 -070098 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080099 <action class="org.onosproject.cli.MastersListCommand"/>
Thomas Vachuskae0f804a2014-10-27 23:40:48 -0700100 </command>
101 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800102 <action class="org.onosproject.cli.BalanceMastersCommand"/>
Thomas Vachuskae02e11c2014-11-24 16:13:52 -0800103 </command>
104 <command>
Thomas Vachuska90b453f2015-01-30 18:57:14 -0800105 <action class="org.onosproject.cli.app.ApplicationIdListCommand"/>
alshabiba7f7ca82014-09-22 11:41:23 -0700106 </command>
tom1380eee2014-09-24 09:22:02 -0700107
alshabiba7f7ca82014-09-22 11:41:23 -0700108 <command>
Jonathan Hart1d006392016-02-11 09:12:56 -0800109 <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 Vachuska5c2f8132015-04-08 23:09:08 -0700119 <action class="org.onosproject.cli.net.DriversListCommand"/>
120 <completers>
121 <ref component-id="driverNameCompleter"/>
Jonathan Harta98ae9d2017-01-26 17:11:11 -0800122 <null/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -0700123 </completers>
124 </command>
125
126 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800127 <action class="org.onosproject.cli.net.DevicesListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -0700128 </command>
129 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800130 <action class="org.onosproject.cli.net.DevicePortsListCommand"/>
tom0eb04ca2014-08-25 14:34:51 -0700131 <completers>
tom6d2a43e2014-09-08 01:50:20 -0700132 <ref component-id="deviceIdCompleter"/>
tom0eb04ca2014-08-25 14:34:51 -0700133 </completers>
134 </command>
tom6d2a43e2014-09-08 01:50:20 -0700135 <command>
Saurav Dasa2d37502016-03-25 17:50:40 -0700136 <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>
andreaed976a42015-10-05 14:38:25 -0700145 <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 Kruglikov12faf8d2016-01-04 16:24:07 -0800157 <action class="org.onosproject.cli.net.DeviceConfigGetterCommand"/>
158 <completers>
159 <ref component-id="deviceIdCompleter"/>
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -0700160 <null/>
Aaron Kruglikov12faf8d2016-01-04 16:24:07 -0800161 </completers>
162 </command>
163 <command>
Andreas Papazoisc93117d2016-01-13 15:19:27 +0200164 <action class="org.onosproject.cli.net.DeviceConfigSetterCommand"/>
165 <completers>
166 <ref component-id="deviceIdCompleter"/>
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -0700167 <null/>
Andreas Papazoisc93117d2016-01-13 15:19:27 +0200168 </completers>
169 </command>
170 <command>
Andrea Campanellad8d92db2016-01-14 16:24:41 -0800171 <action class="org.onosproject.cli.net.DevicePortGetterCommand"/>
172 <completers>
173 <ref component-id="deviceIdCompleter"/>
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -0700174 <null/>
Andrea Campanellad8d92db2016-01-14 16:24:41 -0800175 </completers>
176 </command>
177 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800178 <action class="org.onosproject.cli.net.DeviceRemoveCommand"/>
tomc290a122014-09-08 14:27:13 -0700179 <completers>
180 <ref component-id="deviceIdCompleter"/>
181 </completers>
182 </command>
tom5f35f7c2014-09-08 18:38:19 -0700183 <command>
Andreas Papazois1dff77c2016-02-16 16:27:33 +0200184 <action class="org.onosproject.cli.net.DeviceInterfaceAddCommand"/>
185 <completers>
186 <ref component-id="deviceIdCompleter"/>
187 </completers>
188 </command>
189 <command>
Andreas Papazois92e4a042016-02-24 15:29:30 +0200190 <action class="org.onosproject.cli.net.DeviceInterfaceRemoveCommand"/>
191 <completers>
192 <ref component-id="deviceIdCompleter"/>
193 </completers>
194 </command>
195 <command>
Andreas Papazois1ed54cf2016-05-04 16:22:40 +0300196 <action class="org.onosproject.cli.net.DeviceInterfacesListCommand"/>
197 <completers>
198 <ref component-id="deviceIdCompleter"/>
199 </completers>
200 </command>
201 <command>
Jordi Ortiz4c93e272017-01-30 13:25:51 +0100202 <action class="org.onosproject.cli.net.MeterAddCommand"/>
alshabib58fe6dc2015-08-19 17:16:13 -0700203 <completers>
204 <ref component-id="deviceIdCompleter"/>
205 </completers>
206 </command>
207 <command>
Jordi Ortiz1d8cc492017-01-27 14:28:53 +0100208 <action class="org.onosproject.cli.net.MeterRemoveCommand"/>
209 <completers>
210 <ref component-id="deviceIdCompleter"/>
211 </completers>
212 </command>
213 <command>
sangyun-han483731c2016-06-06 12:03:16 +0900214 <action class="org.onosproject.cli.net.MetersListCommand"/>
alshabib58fe6dc2015-08-19 17:16:13 -0700215 <completers>
216 <ref component-id="deviceIdCompleter"/>
217 </completers>
218 </command>
219 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800220 <action class="org.onosproject.cli.net.DeviceRoleCommand"/>
tom5f35f7c2014-09-08 18:38:19 -0700221 <completers>
222 <ref component-id="deviceIdCompleter"/>
toma6235a52014-10-15 13:25:39 -0700223 <ref component-id="nodeIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700224 <ref component-id="roleCompleter"/>
tom5f35f7c2014-09-08 18:38:19 -0700225 </completers>
226 </command>
Yuta HIGUCHI5f3c0332017-01-09 17:41:07 -0800227
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700228 <command>
229 <action class="org.onosproject.cli.net.AnnotateDeviceCommand"/>
230 <completers>
231 <ref component-id="deviceIdCompleter"/>
Yuta HIGUCHI5f3c0332017-01-09 17:41:07 -0800232 <ref component-id="annotationKeysCompleter"/>
HIGUCHI Yuta98030712015-10-20 13:21:49 -0700233 <null/>
Yuta HIGUCHI5f3c0332017-01-09 17:41:07 -0800234 </completers>
235 </command>
236
237 <command>
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800238 <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 HIGUCHI5f3c0332017-01-09 17:41:07 -0800247 <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 Yuta98030712015-10-20 13:21:49 -0700252 <null/>
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700253 </completers>
254 </command>
tomc290a122014-09-08 14:27:13 -0700255
256 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800257 <action class="org.onosproject.cli.net.LinksListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -0700258 <completers>
259 <ref component-id="deviceIdCompleter"/>
260 </completers>
261 </command>
tom13cb4852014-09-11 12:44:17 -0700262
263 <command>
Aaron Kruglikova2b59152015-06-24 14:01:41 -0700264 <action class="org.onosproject.cli.net.EdgePortsListCommand"/>
265 <completers>
266 <ref component-id="deviceIdCompleter"/>
Jonathan Hart6ff6ffe2016-09-09 11:55:50 -0700267 <null/>
Aaron Kruglikova2b59152015-06-24 14:01:41 -0700268 </completers>
269 </command>
270
271 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800272 <action class="org.onosproject.cli.net.TopologyCommand"/>
tom13cb4852014-09-11 12:44:17 -0700273 </command>
274 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800275 <action class="org.onosproject.cli.net.PathListCommand"/>
tom9eb57fb2014-09-11 19:42:38 -0700276 <completers>
277 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700278 <ref component-id="deviceIdCompleter"/>
Yuta HIGUCHI33485fb2017-01-25 20:13:30 -0800279 <null/> <!-- no more arguments -->
tom9eb57fb2014-09-11 19:42:38 -0700280 </completers>
281 </command>
tomf5c9d922014-10-03 15:22:03 -0700282
tom9eb57fb2014-09-11 19:42:38 -0700283 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800284 <action class="org.onosproject.cli.net.IntentsListCommand"/>
tom0511a522014-10-04 12:06:02 -0700285 </command>
286 <command>
Thomas Vachuskacdac6e82016-02-29 19:21:49 -0800287 <action class="org.onosproject.cli.net.IntentListCompilers"/>
288 </command>
289 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800290 <action class="org.onosproject.cli.net.IntentRemoveCommand"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700291 <completers>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700292 <ref component-id="appIdWithIntentNameCompleter"/>
Brian O'Connor264cb992015-06-04 17:16:57 -0700293 <ref component-id="intentKeyCompleter"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700294 </completers>
295 </command>
tomf5c9d922014-10-03 15:22:03 -0700296 <command>
Brian O'Connor72df5b12015-06-02 16:50:18 -0700297 <action class="org.onosproject.cli.net.IntentPurgeCommand"/>
298 </command>
299 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800300 <action class="org.onosproject.cli.net.AddHostToHostIntentCommand"/>
tom0511a522014-10-04 12:06:02 -0700301 <completers>
tom6db1f0a2014-10-07 09:12:29 -0700302 <ref component-id="hostIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700303 <ref component-id="hostIdCompleter"/>
tom0511a522014-10-04 12:06:02 -0700304 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700305 <optional-completers>
Charles M.C. Chan2d89eca2015-04-29 21:32:17 +0800306 <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 Milkey95c50872015-04-14 14:32:31 -0700311 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100312 <entry key="-e" value-ref="encapTypeCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700313 </optional-completers>
tomf5c9d922014-10-03 15:22:03 -0700314 </command>
Ray Milkeya058c732014-10-08 13:52:34 -0700315 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800316 <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/>
Ray Milkeya058c732014-10-08 13:52:34 -0700317 <completers>
318 <ref component-id="connectPointCompleter"/>
319 <ref component-id="connectPointCompleter"/>
Yuta HIGUCHIcd318502016-09-01 14:25:58 -0700320 <null/> <!-- no more argument -->
Ray Milkeya058c732014-10-08 13:52:34 -0700321 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700322 <optional-completers>
323 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800324 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800325 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
326 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
327 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700328 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100329 <entry key="-e" value-ref="encapTypeCompleter"/>
Yuta HIGUCHIcd318502016-09-01 14:25:58 -0700330 <entry key="-r" value-ref="nullCompleter"/> <!-- option has no argument -->
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700331 </optional-completers>
Ray Milkeya058c732014-10-08 13:52:34 -0700332 </command>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700333 <command>
sangyun-han483731c2016-06-06 12:03:16 +0900334 <action class="org.onosproject.cli.net.GetStatisticsCommand"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800335 <completers>
336 <ref component-id="connectPointCompleter"/>
337 </completers>
alshabib23a8d7c2014-10-22 21:53:39 -0700338 </command>
339 <command>
sangyun-han483731c2016-06-06 12:03:16 +0900340 <action class="org.onosproject.cli.net.GetFlowStatisticsCommand"/>
ssyoon90a98825a2015-08-26 00:48:15 +0900341 <completers>
342 <ref component-id="deviceIdCompleter"/>
343 </completers>
344 </command>
345 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800346 <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/>
Ray Milkey0742ec92014-10-13 08:39:55 -0700347 <completers>
348 <ref component-id="connectPointCompleter"/>
349 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700350 <optional-completers>
351 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800352 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800353 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
354 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
355 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700356 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100357 <entry key="-e" value-ref="encapTypeCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700358 </optional-completers>
Ray Milkey0742ec92014-10-13 08:39:55 -0700359 </command>
360 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800361 <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100362 <completers>
363 <ref component-id="connectPointCompleter"/>
364 </completers>
365 <optional-completers>
366 <entry key="-t" value-ref="ethTypeCompleter"/>
Pavlin Radoslavov70761df2015-03-09 11:05:49 -0700367 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800368 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
369 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
370 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700371 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100372 <entry key="-e" value-ref="encapTypeCompleter"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100373 </optional-completers>
374 </command>
375 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800376 <action class="org.onosproject.cli.net.IntentPushTestCommand"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700377 <completers>
378 <ref component-id="connectPointCompleter"/>
379 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700380 <ref component-id="nullCompleter"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700381 </completers>
382 </command>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700383 <command>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800384 <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'Connor66cfbfa2015-02-17 18:17:32 -0800389 </completers>
390 </command>
391 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800392 <action class="org.onosproject.cli.net.RandomIntentCommand"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800393 <completers>
394 <ref component-id="nullCompleter"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800395 </completers>
396 </command>
397 <command>
HIGUCHI Yuta848324f2015-12-04 21:11:26 -0800398 <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 Koshibe4699b292015-04-28 14:33:10 -0700419 <command>
Yuta HIGUCHIa1071722016-12-07 20:21:16 -0800420 <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'Connorabafb502014-12-02 22:26:20 -0800438 <action class="org.onosproject.cli.net.ClustersListCommand"/>
tom13cb4852014-09-11 12:44:17 -0700439 </command>
440 <command>
Jonathan Hart054da972015-02-18 17:30:28 -0800441 <action class="org.onosproject.cli.net.PartitionsListCommand"/>
442 </command>
443 <command>
Madan Jampania89f8f92015-04-01 14:39:54 -0700444 <action class="org.onosproject.cli.net.MapsListCommand"/>
445 </command>
446 <command>
Madan Jampanib5d72d52015-04-03 16:53:50 -0700447 <action class="org.onosproject.cli.net.CountersListCommand"/>
448 </command>
449 <command>
Madan Jampani35708a92016-07-06 10:48:19 -0700450 <action class="org.onosproject.cli.net.QueuesListCommand"/>
451 </command>
452 <command>
Madan Jampanibff6d8f2015-03-31 16:53:47 -0700453 <action class="org.onosproject.cli.net.TransactionsCommand"/>
454 </command>
455 <command>
Madan Jampaniaac58882016-08-31 14:24:31 -0700456 <action class="org.onosproject.cli.net.CounterCommand"/>
457 </command>
458 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800459 <action class="org.onosproject.cli.net.ClusterDevicesCommand"/>
tom13cb4852014-09-11 12:44:17 -0700460 <completers>
461 <ref component-id="clusterIdCompleter"/>
462 </completers>
463 </command>
464 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800465 <action class="org.onosproject.cli.net.ClusterLinksCommand"/>
tom13cb4852014-09-11 12:44:17 -0700466 <completers>
467 <ref component-id="clusterIdCompleter"/>
468 </completers>
469 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700470
471 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800472 <action class="org.onosproject.cli.net.HostsListCommand"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700473 </command>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700474 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800475 <action class="org.onosproject.cli.net.HostRemoveCommand"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800476 <completers>
477 <ref component-id="hostIdCompleter"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800478 </completers>
479 </command>
480 <command>
Jonathan Harteb8c9472015-08-05 07:43:13 -0700481 <action class="org.onosproject.cli.net.InterfacesListCommand"/>
482 </command>
tom89b63c52014-09-16 09:19:51 -0700483 <command>
Jonathan Hart0bdf8372015-10-08 14:30:36 -0700484 <action class="org.onosproject.cli.net.InterfaceAddCommand"/>
Jonathan Hart7dbe6292015-11-10 08:33:17 -0800485 <completers>
486 <ref component-id="connectPointCompleter" />
487 <ref component-id="placeholderCompleter" />
488 </completers>
Jonathan Hart0bdf8372015-10-08 14:30:36 -0700489 </command>
490 <command>
491 <action class="org.onosproject.cli.net.InterfaceRemoveCommand"/>
492 <completers>
493 <ref component-id="connectPointCompleter"/>
Jonathan Hartfce51472017-01-26 16:57:33 -0800494 <ref component-id="interfaceNameCompleter"/>
495 <null/>
Jonathan Hart0bdf8372015-10-08 14:30:36 -0700496 </completers>
497 </command>
498 <command>
Jonathan Hart32600692015-03-09 10:38:40 -0700499 <action class="org.onosproject.cli.net.GroupsListCommand"/>
Charles Chanf38aca72016-02-18 13:40:18 -0800500 <completers>
501 <ref component-id="groupStatusCompleter"/>
502 <ref component-id="deviceIdCompleter"/>
503 <null/>
504 </completers>
Jonathan Hart32600692015-03-09 10:38:40 -0700505 </command>
506
507 <command>
sangho538108b2015-04-08 14:29:20 -0700508 <action class="org.onosproject.cli.net.DevicePortStatsCommand"/>
Saurav Dasa2d37502016-03-25 17:50:40 -0700509 <completers>
510 <ref component-id="deviceIdCompleter"/>
511 <ref component-id="portNumberCompleter"/>
512 <null/>
513 </completers>
sangho538108b2015-04-08 14:29:20 -0700514 </command>
515
516 <command>
Andreas Papazois25a98e72016-07-28 10:57:15 +0530517 <action class="org.onosproject.cli.net.PortQueryVlansCommand"/>
518 <completers>
519 <ref component-id="connectPointCompleter"/>
520 </completers>
521 </command>
522
523 <command>
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700524 <action class="org.onosproject.cli.net.TableStatisticsCommand"/>
525 </command>
526
527 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800528 <action class="org.onosproject.cli.net.FlowsListCommand"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700529 <completers>
alshabib144a2942014-09-25 18:44:02 -0700530 <ref component-id="flowRuleStatusCompleter"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700531 <ref component-id="deviceIdCompleter"/>
Jonathan Hartc7840bd2016-01-21 23:26:29 -0800532 <ref component-id="placeholderCompleter"/>
533 <null/>
alshabib99b8fdc2014-09-25 14:30:22 -0700534 </completers>
tom1380eee2014-09-24 09:22:02 -0700535 </command>
536
537 <command>
Thomas Vachuska7f171b22015-08-21 12:49:08 -0700538 <action class="org.onosproject.cli.net.PacketRequestsListCommand"/>
539 </command>
540 <command>
541 <action class="org.onosproject.cli.net.PacketProcessorsListCommand"/>
542 </command>
Jonathan Hartc4f681c2016-09-09 07:14:25 -0700543 <command>
544 <action class="org.onosproject.cli.net.NeighbourHandlersListCommand"/>
545 </command>
Thomas Vachuska7f171b22015-08-21 12:49:08 -0700546
547 <command>
suibin zhangcb7f0d12015-08-10 11:14:15 -0700548 <action class="org.onosproject.cli.net.AddTestFlowsCommand"/>
alshabib5afcbd72014-10-30 16:28:40 +0100549 </command>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800550 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800551 <action class="org.onosproject.cli.net.LeaderCommand"/>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800552 </command>
alshabib5afcbd72014-10-30 16:28:40 +0100553
554 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800555 <action class="org.onosproject.cli.net.WipeOutCommand"/>
tom89b63c52014-09-16 09:19:51 -0700556 </command>
Michele Santuari4b6019e2014-12-19 11:31:45 +0100557 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800558 <action class="org.onosproject.cli.net.AddMplsIntent"/>
559 <completers>
560 <ref component-id="connectPointCompleter"/>
Ray Milkey2a6e4452015-04-08 09:59:20 -0700561 <ref component-id="connectPointCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800562 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700563 <optional-completers>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800564 <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 Milkey95c50872015-04-14 14:32:31 -0700569 <entry key="-a" value-ref="allAppNameCompleter"/>
570 </optional-completers>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800571 </command>
Jonathan Harteb8c9472015-08-05 07:43:13 -0700572
jccde3e92e2015-03-28 01:40:44 -0700573 <command>
Jonathan Hartbfc5c482016-04-05 18:57:00 -0700574 <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 Hartfd176612016-04-11 10:42:10 -0700582 <command>
583 <action class="org.onosproject.cli.net.NextHopsListCommand"/>
584 </command>
Jonathan Hartbfc5c482016-04-05 18:57:00 -0700585
586 <command>
samuel7a5691a2015-05-23 00:36:32 +0800587 <action class="org.onosproject.cli.net.GlobalLabelCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700588 </command>
589 <command>
samuel7a5691a2015-05-23 00:36:32 +0800590 <action class="org.onosproject.cli.net.LabelResourceCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700591 </command>
592 <command>
samuel7a5691a2015-05-23 00:36:32 +0800593 <action class="org.onosproject.cli.net.GlobalLabelPoolCreateCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700594 </command>
595 <command>
samuel7a5691a2015-05-23 00:36:32 +0800596 <action class="org.onosproject.cli.net.LabelPoolCreateCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700597 </command>
598 <command>
samuel7a5691a2015-05-23 00:36:32 +0800599 <action class="org.onosproject.cli.net.GlobalLabelPoolDestoryCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700600 </command>
601 <command>
samuel7a5691a2015-05-23 00:36:32 +0800602 <action class="org.onosproject.cli.net.LabelPoolDestroyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700603 </command>
604 <command>
samuel7a5691a2015-05-23 00:36:32 +0800605 <action class="org.onosproject.cli.net.GlobalLabelReleaseCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700606 </command>
607 <command>
samuel7a5691a2015-05-23 00:36:32 +0800608 <action class="org.onosproject.cli.net.LabelReleaseCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700609 </command>
610 <command>
samuel7a5691a2015-05-23 00:36:32 +0800611 <action class="org.onosproject.cli.net.GlobalLabelApplyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700612 </command>
613 <command>
samuel7a5691a2015-05-23 00:36:32 +0800614 <action class="org.onosproject.cli.net.LabelApplyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700615 </command>
jccd8697232015-05-05 14:42:23 +0800616 <!-- tunnel commands -->
617 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700618 <action class="org.onosproject.cli.net.TunnelBorrowCommand"/>
jccd8697232015-05-05 14:42:23 +0800619 </command>
620 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700621 <action class="org.onosproject.cli.net.TunnelReturnCommand"/>
jccd8697232015-05-05 14:42:23 +0800622 </command>
623 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700624 <action class="org.onosproject.cli.net.TunnelQueryCommand"/>
jccd8697232015-05-05 14:42:23 +0800625 </command>
626 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700627 <action class="org.onosproject.cli.net.TunnelQuerySubscriptionCommand"/>
jccd8697232015-05-05 14:42:23 +0800628 </command>
cheng fan7716ec92015-05-31 01:53:19 +0800629 <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 Stankee312fc72016-02-16 15:07:13 -0500638 <!-- 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 Licf744442016-02-25 17:32:42 +0900649 <!--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 Li43a0b2f2016-02-29 10:01:54 -0800662 <ref component-id="nodeIdCompleter"/>
Jian Licf744442016-02-25 17:32:42 +0900663 </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 Li43a0b2f2016-02-29 10:01:54 -0800671 <ref component-id="nodeIdCompleter"/>
Jian Licf744442016-02-25 17:32:42 +0900672 </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 Huntc4ca7102017-04-08 22:28:04 -0700694 <command>
695 <action class="org.onosproject.cli.net.RegionAddPeerLocCommand"/>
696 <completers>
697 <ref component-id="regionIdCompleter"/>
698 </completers>
699 </command>
Brian Stanke5df14472016-03-11 19:34:38 -0500700
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -0700701 <!-- 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 Stanke5df14472016-03-11 19:34:38 -0500714 <!--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 Huang652ea832017-03-18 22:59:44 +0800723 <completers>
724 <ref component-id="tenantCompleter"/>
725 <null/>
726 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500727 </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 Huang652ea832017-03-18 22:59:44 +0800733 <completers>
734 <ref component-id="tenantCompleter"/>
735 <ref component-id="nullCompleter"/>
736 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500737 </command>
738 <command>
739 <action class="org.onosproject.cli.net.vnet.VirtualNetworkRemoveCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800740 <completers>
741 <ref component-id="virtualNetworkCompleter"/>
742 <null/>
743 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500744 </command>
745 <command>
746 <action class="org.onosproject.cli.net.vnet.VirtualDeviceListCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800747 <completers>
748 <ref component-id="virtualNetworkCompleter"/>
749 <null/>
750 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500751 </command>
752 <command>
753 <action class="org.onosproject.cli.net.vnet.VirtualDeviceCreateCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800754 <completers>
755 <ref component-id="virtualNetworkCompleter"/>
756 <null/>
757 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500758 </command>
759 <command>
760 <action class="org.onosproject.cli.net.vnet.VirtualDeviceRemoveCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800761 <completers>
762 <ref component-id="virtualNetworkCompleter"/>
763 <ref component-id="virtualDeviceCompleter"/>
764 <ref component-id="nullCompleter"/>
765 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500766 </command>
767 <command>
768 <action class="org.onosproject.cli.net.vnet.VirtualLinkListCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800769 <completers>
770 <ref component-id="virtualNetworkCompleter"/>
771 <null/>
772 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500773 </command>
774 <command>
775 <action class="org.onosproject.cli.net.vnet.VirtualLinkCreateCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800776 <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 Stanke5df14472016-03-11 19:34:38 -0500784 </command>
785 <command>
786 <action class="org.onosproject.cli.net.vnet.VirtualLinkRemoveCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800787 <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 Stanke5df14472016-03-11 19:34:38 -0500795 </command>
796 <command>
797 <action class="org.onosproject.cli.net.vnet.VirtualPortListCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800798 <completers>
799 <ref component-id="virtualNetworkCompleter"/>
800 <ref component-id="virtualDeviceCompleter"/>
801 <null/>
802 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500803 </command>
804 <command>
805 <action class="org.onosproject.cli.net.vnet.VirtualPortCreateCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800806 <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 Stanke5df14472016-03-11 19:34:38 -0500814 </command>
815 <command>
Yoonseon Han6c603892016-09-01 11:52:21 -0700816 <action class="org.onosproject.cli.net.vnet.VirtualPortBindCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800817 <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 Han6c603892016-09-01 11:52:21 -0700825 </command>
826 <command>
Brian Stanke5df14472016-03-11 19:34:38 -0500827 <action class="org.onosproject.cli.net.vnet.VirtualPortRemoveCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800828 <completers>
829 <ref component-id="virtualNetworkCompleter"/>
830 <ref component-id="virtualDeviceCompleter"/>
831 <ref component-id="virtualPortCompleter"/>
832 <null/>
833 </completers>
Brian Stanke5df14472016-03-11 19:34:38 -0500834 </command>
Claudine Chiu25f07be2016-06-27 16:21:21 +0000835 <command>
836 <action class="org.onosproject.cli.net.vnet.VirtualHostListCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800837 <completers>
838 <ref component-id="virtualNetworkCompleter"/>
839 <null/>
840 </completers>
Claudine Chiu25f07be2016-06-27 16:21:21 +0000841 </command>
842 <command>
843 <action class="org.onosproject.cli.net.vnet.VirtualHostCreateCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800844 <completers>
845 <ref component-id="virtualNetworkCompleter"/>
846 <null/>
847 </completers>
Claudine Chiu25f07be2016-06-27 16:21:21 +0000848 </command>
849 <command>
850 <action class="org.onosproject.cli.net.vnet.VirtualHostRemoveCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800851 <completers>
852 <ref component-id="virtualNetworkCompleter"/>
853 <ref component-id="virtualHostCompleter"/>
854 <null/>
855 </completers>
Claudine Chiu25f07be2016-06-27 16:21:21 +0000856 </command>
Brian Stanke11f6d532016-07-05 16:17:59 -0400857 <command>
858 <action class="org.onosproject.cli.net.vnet.VirtualNetworkIntentCreateCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800859 <completers>
860 <ref component-id="virtualNetworkCompleter"/>
861 <null/>
862 </completers>
Brian Stanke11f6d532016-07-05 16:17:59 -0400863 </command>
864 <command>
865 <action class="org.onosproject.cli.net.vnet.VirtualNetworkIntentRemoveCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800866 <completers>
867 <ref component-id="virtualNetworkCompleter"/>
868 <null/>
869 </completers>
Brian Stanke11f6d532016-07-05 16:17:59 -0400870 </command>
Sangsik Yoonf0b3ad82016-08-19 18:47:59 +0900871 <command>
Yoonseon Han21058322017-03-07 17:48:56 +0900872 <action class="org.onosproject.cli.net.vnet.VirtualFlowsListCommand"/>
Harold Huang652ea832017-03-18 22:59:44 +0800873 <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 Han21058322017-03-07 17:48:56 +0900880 </command>
881 <command>
Claudine Chiu1f036b82017-03-09 16:45:56 -0500882 <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 Yoonf0b3ad82016-08-19 18:47:59 +0900892 <action class="org.onosproject.cli.net.DpisListCommand"/>
893 </command>
Yuta HIGUCHIfadb9a32017-01-13 09:33:10 -0800894
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 HIGUCHI31207782017-02-17 14:43:40 -0800902 <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
tom0eb04ca2014-08-25 14:34:51 -0700915 </command-bundle>
916
Changhoon Yoonb856b812015-08-10 03:47:19 +0900917 <bean id="reviewAppNameCompleter" class="org.onosproject.cli.security.ReviewApplicationNameCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800918 <bean id="appCommandCompleter" class="org.onosproject.cli.app.ApplicationCommandCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -0800919 <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700920 <bean id="allAppNameCompleter" class="org.onosproject.cli.app.AllApplicationNamesCompleter"/>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700921 <bean id="appIdWithIntentNameCompleter" class="org.onosproject.cli.app.ApplicationIdWithIntentNameCompleter"/>
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700922 <bean id="cfgCommandCompleter" class="org.onosproject.cli.cfg.ComponentConfigCommandCompleter"/>
923 <bean id="componentNameCompleter" class="org.onosproject.cli.cfg.ComponentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -0700924 <bean id="componentPropertyNameCompleter" class="org.onosproject.cli.cfg.ComponentPropertyNameCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800925 <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/>
926 <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
HIGUCHI Yuta848324f2015-12-04 21:11:26 -0800927 <bean id="portNumberCompleter" class="org.onosproject.cli.net.PortNumberCompleter"/>
Saurav Dasa2d37502016-03-25 17:50:40 -0700928 <bean id="portStateCompleter" class="org.onosproject.cli.net.PortStateCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800929 <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'Connor264cb992015-06-04 17:16:57 -0700932 <bean id="intentKeyCompleter" class="org.onosproject.cli.net.IntentKeyCompleter"/>
Yuta HIGUCHIfadb9a32017-01-13 09:33:10 -0800933 <bean id="intentIdCompleter" class="org.onosproject.cli.net.completer.IntentIdCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800934 <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/>
Charles Chanf38aca72016-02-18 13:40:18 -0800935 <bean id="groupStatusCompleter" class="org.onosproject.cli.net.GroupStatusCompleter" />
Brian O'Connorabafb502014-12-02 22:26:20 -0800936 <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700937 <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800938 <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/>
939 <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -0700940 <bean id="driverNameCompleter" class="org.onosproject.cli.net.DriverNameCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800941 <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"/>
tom6d2a43e2014-09-08 01:50:20 -0700944
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700945 <bean id="startStopCompleter" class="org.onosproject.cli.StartStopCompleter"/>
Flavio Castro4b519412015-07-24 12:57:59 -0700946 <bean id="metricNameCompleter" class="org.onosproject.cli.MetricNameCompleter"/>
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700947 <bean id="upDownCompleter" class="org.onosproject.cli.UpDownCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100948 <bean id="encapTypeCompleter" class="org.onosproject.cli.net.EncapTypeCompleter"/>
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700949
Jonathan Hart7dbe6292015-11-10 08:33:17 -0800950 <bean id="placeholderCompleter" class="org.onosproject.cli.PlaceholderCompleter"/>
951
HIGUCHI Yuta4f074c02015-11-23 10:15:53 -0800952 <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 Licf744442016-02-25 17:32:42 +0900956 <bean id="regionIdCompleter" class="org.onosproject.cli.net.RegionIdCompleter"/>
957 <bean id="regionTypeCompleter" class="org.onosproject.cli.net.RegionTypeCompleter"/>
Yuta HIGUCHI5f3c0332017-01-09 17:41:07 -0800958
959 <bean id="annotationKeysCompleter" class="org.onosproject.cli.net.completer.AnnotationKeysCompleter"/>
960
961 <bean id="peerConnectPointCompleter" class="org.onosproject.cli.net.completer.PeerConnectPointCompleter"/>
Jonathan Hartfce51472017-01-26 16:57:33 -0800962 <bean id="interfaceNameCompleter" class="org.onosproject.cli.net.completer.InterfaceNameCompleter"/>
Yuta HIGUCHI31207782017-02-17 14:43:40 -0800963
964 <bean id="linkTypeCompleter" class="org.onosproject.cli.net.completer.LinkTypeCompleter"/>
965
Harold Huang652ea832017-03-18 22:59:44 +0800966 <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"/>
tom0eb04ca2014-08-25 14:34:51 -0700971</blueprint>