blob: b2daaa13227489f793642ce75a41003146b9feee [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001<!--
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 ~ Copyright 2014 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">
19 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080020 <action class="org.onosproject.cli.SummaryCommand"/>
tom9b4030d2014-10-06 10:39:03 -070021 </command>
Yuta HIGUCHI6a462832014-11-23 23:56:03 -080022 <command>
Changhoon Yoonb856b812015-08-10 03:47:19 +090023 <action class="org.onosproject.cli.security.ReviewCommand"/>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090024 <completers>
Changhoon Yoonb856b812015-08-10 03:47:19 +090025 <ref component-id="reviewAppNameCompleter"/>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090026 </completers>
27 </command>
28
29 <command>
Xin Jin313708b2015-07-09 13:43:04 -070030 <action class="org.onosproject.cli.net.FlowObjectiveCompositionCommand"/>
31 </command>
32
33 <command>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080034 <action class="org.onosproject.cli.app.ApplicationsListCommand"/>
35 </command>
36
37 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080038 <action class="org.onosproject.cli.app.ApplicationCommand"/>
39 <completers>
40 <ref component-id="appCommandCompleter"/>
41 <ref component-id="appNameCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080042 </completers>
43 </command>
44
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080045 <command>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070046 <action class="org.onosproject.cli.cfg.ComponentConfigCommand"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080047 <completers>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070048 <ref component-id="cfgCommandCompleter"/>
49 <ref component-id="componentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -070050 <ref component-id="componentPropertyNameCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080051 </completers>
52 </command>
53
54 <command>
Thomas Vachuska96d55b12015-05-11 08:52:03 -070055 <action class="org.onosproject.cli.cfg.NetworkConfigRegistryCommand"/>
56 </command>
57
58 <command>
59 <action class="org.onosproject.cli.cfg.NetworkConfigCommand"/>
60 </command>
61
62 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080063 <action class="org.onosproject.cli.MetricsListCommand"/>
Flavio Castro4b519412015-07-24 12:57:59 -070064 <completers>
65 <ref component-id="metricNameCompleter"/>
66 </completers>
Yuta HIGUCHI6a462832014-11-23 23:56:03 -080067 </command>
68
tom9b4030d2014-10-06 10:39:03 -070069 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080070 <action class="org.onosproject.cli.NodesListCommand"/>
tome4729872014-09-23 00:37:37 -070071 </command>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070072
73 <command>
Thomas Vachuska4cfcc562015-06-03 09:51:02 -070074 <action class="org.onosproject.cli.UiViewListCommand"/>
75 </command>
76
77 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080078 <action class="org.onosproject.cli.RolesCommand"/>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070079 </command>
tom9710fb42014-09-29 11:35:28 -070080 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080081 <action class="org.onosproject.cli.MastersListCommand"/>
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070082 </command>
83 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080084 <action class="org.onosproject.cli.BalanceMastersCommand"/>
Thomas Vachuskae02e11c2014-11-24 16:13:52 -080085 </command>
86 <command>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080087 <action class="org.onosproject.cli.app.ApplicationIdListCommand"/>
alshabiba7f7ca82014-09-22 11:41:23 -070088 </command>
tom1380eee2014-09-24 09:22:02 -070089
alshabiba7f7ca82014-09-22 11:41:23 -070090 <command>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070091 <action class="org.onosproject.cli.net.DriversListCommand"/>
92 <completers>
93 <ref component-id="driverNameCompleter"/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070094 </completers>
95 </command>
96
97 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080098 <action class="org.onosproject.cli.net.DevicesListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -070099 </command>
100 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800101 <action class="org.onosproject.cli.net.DevicePortsListCommand"/>
tom0eb04ca2014-08-25 14:34:51 -0700102 <completers>
tom6d2a43e2014-09-08 01:50:20 -0700103 <ref component-id="deviceIdCompleter"/>
tom0eb04ca2014-08-25 14:34:51 -0700104 </completers>
105 </command>
tom6d2a43e2014-09-08 01:50:20 -0700106 <command>
andreaed976a42015-10-05 14:38:25 -0700107 <action class="org.onosproject.cli.net.DeviceControllersCommand"/>
108 <completers>
109 <ref component-id="deviceIdCompleter"/>
110 </completers>
111 </command>
112 <command>
113 <action class="org.onosproject.cli.net.DeviceSetControllersCommand"/>
114 <completers>
115 <ref component-id="deviceIdCompleter"/>
116 </completers>
117 </command>
118 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800119 <action class="org.onosproject.cli.net.DeviceRemoveCommand"/>
tomc290a122014-09-08 14:27:13 -0700120 <completers>
121 <ref component-id="deviceIdCompleter"/>
122 </completers>
123 </command>
tom5f35f7c2014-09-08 18:38:19 -0700124 <command>
alshabib58fe6dc2015-08-19 17:16:13 -0700125 <action class="org.onosproject.cli.net.AddMeter"/>
126 <completers>
127 <ref component-id="deviceIdCompleter"/>
128 </completers>
129 </command>
130 <command>
131 <action class="org.onosproject.cli.net.Meters"/>
132 <completers>
133 <ref component-id="deviceIdCompleter"/>
134 </completers>
135 </command>
136 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800137 <action class="org.onosproject.cli.net.DeviceRoleCommand"/>
tom5f35f7c2014-09-08 18:38:19 -0700138 <completers>
139 <ref component-id="deviceIdCompleter"/>
toma6235a52014-10-15 13:25:39 -0700140 <ref component-id="nodeIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700141 <ref component-id="roleCompleter"/>
tom5f35f7c2014-09-08 18:38:19 -0700142 </completers>
143 </command>
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700144 <command>
145 <action class="org.onosproject.cli.net.AnnotateDeviceCommand"/>
146 <completers>
147 <ref component-id="deviceIdCompleter"/>
HIGUCHI Yuta98030712015-10-20 13:21:49 -0700148 <null/>
149 <null/>
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700150 </completers>
151 </command>
tomc290a122014-09-08 14:27:13 -0700152
153 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800154 <action class="org.onosproject.cli.net.LinksListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -0700155 <completers>
156 <ref component-id="deviceIdCompleter"/>
157 </completers>
158 </command>
tom13cb4852014-09-11 12:44:17 -0700159
160 <command>
Aaron Kruglikova2b59152015-06-24 14:01:41 -0700161 <action class="org.onosproject.cli.net.EdgePortsListCommand"/>
162 <completers>
163 <ref component-id="deviceIdCompleter"/>
164 </completers>
165 </command>
166
167 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800168 <action class="org.onosproject.cli.net.TopologyCommand"/>
tom13cb4852014-09-11 12:44:17 -0700169 </command>
170 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800171 <action class="org.onosproject.cli.net.PathListCommand"/>
tom9eb57fb2014-09-11 19:42:38 -0700172 <completers>
173 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700174 <ref component-id="deviceIdCompleter"/>
tom9eb57fb2014-09-11 19:42:38 -0700175 </completers>
176 </command>
tomf5c9d922014-10-03 15:22:03 -0700177
tom9eb57fb2014-09-11 19:42:38 -0700178 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800179 <action class="org.onosproject.cli.net.IntentsListCommand"/>
tom0511a522014-10-04 12:06:02 -0700180 </command>
181 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800182 <action class="org.onosproject.cli.net.IntentRemoveCommand"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700183 <completers>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700184 <ref component-id="appIdWithIntentNameCompleter"/>
Brian O'Connor264cb992015-06-04 17:16:57 -0700185 <ref component-id="intentKeyCompleter"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700186 </completers>
187 </command>
tomf5c9d922014-10-03 15:22:03 -0700188 <command>
Brian O'Connor72df5b12015-06-02 16:50:18 -0700189 <action class="org.onosproject.cli.net.IntentPurgeCommand"/>
190 </command>
191 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800192 <action class="org.onosproject.cli.net.AddHostToHostIntentCommand"/>
tom0511a522014-10-04 12:06:02 -0700193 <completers>
tom6db1f0a2014-10-07 09:12:29 -0700194 <ref component-id="hostIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700195 <ref component-id="hostIdCompleter"/>
tom0511a522014-10-04 12:06:02 -0700196 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700197 <optional-completers>
Charles M.C. Chan2d89eca2015-04-29 21:32:17 +0800198 <entry key="-t" value-ref="ethTypeCompleter"/>
199 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
200 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
201 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
202 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700203 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100204 <entry key="-e" value-ref="encapTypeCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700205 </optional-completers>
tomf5c9d922014-10-03 15:22:03 -0700206 </command>
Ray Milkeya058c732014-10-08 13:52:34 -0700207 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800208 <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/>
Ray Milkeya058c732014-10-08 13:52:34 -0700209 <completers>
210 <ref component-id="connectPointCompleter"/>
211 <ref component-id="connectPointCompleter"/>
212 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700213 <optional-completers>
214 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800215 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800216 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
217 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
218 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700219 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100220 <entry key="-e" value-ref="encapTypeCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700221 </optional-completers>
Ray Milkeya058c732014-10-08 13:52:34 -0700222 </command>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700223 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800224 <action class="org.onosproject.cli.net.AddOpticalIntentCommand"/>
Brian O'Connor5296b322014-10-23 14:59:05 -0700225 <completers>
226 <ref component-id="connectPointCompleter"/>
227 <ref component-id="connectPointCompleter"/>
Brian O'Connor5296b322014-10-23 14:59:05 -0700228 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700229 <optional-completers>
230 <entry key="-a" value-ref="allAppNameCompleter"/>
231 </optional-completers>
Brian O'Connor5296b322014-10-23 14:59:05 -0700232 </command>
233 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800234 <action class="org.onosproject.cli.net.GetStatistics"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800235 <completers>
236 <ref component-id="connectPointCompleter"/>
237 </completers>
alshabib23a8d7c2014-10-22 21:53:39 -0700238 </command>
239 <command>
ssyoon90a98825a2015-08-26 00:48:15 +0900240 <action class="org.onosproject.cli.net.GetFlowStatistics"/>
241 <completers>
242 <ref component-id="deviceIdCompleter"/>
243 </completers>
244 </command>
245 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800246 <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/>
Ray Milkey0742ec92014-10-13 08:39:55 -0700247 <completers>
248 <ref component-id="connectPointCompleter"/>
249 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700250 <optional-completers>
251 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800252 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800253 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
254 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
255 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700256 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100257 <entry key="-e" value-ref="encapTypeCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700258 </optional-completers>
Ray Milkey0742ec92014-10-13 08:39:55 -0700259 </command>
260 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800261 <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100262 <completers>
263 <ref component-id="connectPointCompleter"/>
264 </completers>
265 <optional-completers>
266 <entry key="-t" value-ref="ethTypeCompleter"/>
Pavlin Radoslavov70761df2015-03-09 11:05:49 -0700267 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800268 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
269 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
270 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700271 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100272 <entry key="-e" value-ref="encapTypeCompleter"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100273 </optional-completers>
274 </command>
275 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800276 <action class="org.onosproject.cli.net.IntentPushTestCommand"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700277 <completers>
278 <ref component-id="connectPointCompleter"/>
279 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700280 <ref component-id="nullCompleter"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700281 </completers>
282 </command>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700283 <command>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800284 <action class="org.onosproject.cli.net.IntentCycleCommand"/>
285 <completers>
286 <ref component-id="connectPointCompleter"/>
287 <ref component-id="connectPointCompleter"/>
288 <ref component-id="nullCompleter"/>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800289 </completers>
290 </command>
291 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800292 <action class="org.onosproject.cli.net.RandomIntentCommand"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800293 <completers>
294 <ref component-id="nullCompleter"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800295 </completers>
296 </command>
297 <command>
HIGUCHI Yuta848324f2015-12-04 21:11:26 -0800298 <action class="org.onosproject.cli.net.ResourcesCommand"/>
299 <completers>
300 <ref component-id="deviceIdCompleter"/>
301 <ref component-id="portNumberCompleter"/>
302 </completers>
303 </command>
304 <command>
305 <action class="org.onosproject.cli.net.AllocationsCommand"/>
306 <completers>
307 <ref component-id="deviceIdCompleter"/>
308 <ref component-id="portNumberCompleter"/>
309 </completers>
310 </command>
311 <command>
312 <action class="org.onosproject.cli.net.TestAllocateResource"/>
313 <completers>
314 <ref component-id="deviceIdCompleter"/>
315 <ref component-id="portNumberCompleter"/>
316 </completers>
317 </command>
318
319 <!-- Should deprecate following 3 commands soon. -->
320 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800321 <action class="org.onosproject.cli.net.ResourceAllocationsCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700322 <completers>
323 <ref component-id="connectPointCompleter"/>
324 <ref component-id="connectPointCompleter"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700325 </completers>
326 </command>
327 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800328 <action class="org.onosproject.cli.net.ResourceAvailableCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700329 <completers>
330 <ref component-id="connectPointCompleter"/>
331 <ref component-id="connectPointCompleter"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700332 </completers>
333 </command>
Brian O'Connor66630c82014-10-02 21:08:19 -0700334 <command>
Ayaka Koshibe4699b292015-04-28 14:33:10 -0700335 <action class="org.onosproject.cli.net.LinkResourceTestCommand"/>
336 <completers>
337 <ref component-id="connectPointCompleter"/>
338 <ref component-id="connectPointCompleter"/>
339 <null/>
340 </completers>
341 </command>
342 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800343 <action class="org.onosproject.cli.net.ClustersListCommand"/>
tom13cb4852014-09-11 12:44:17 -0700344 </command>
345 <command>
Jonathan Hart054da972015-02-18 17:30:28 -0800346 <action class="org.onosproject.cli.net.PartitionsListCommand"/>
347 </command>
348 <command>
Madan Jampania89f8f92015-04-01 14:39:54 -0700349 <action class="org.onosproject.cli.net.MapsListCommand"/>
350 </command>
351 <command>
Madan Jampanib5d72d52015-04-03 16:53:50 -0700352 <action class="org.onosproject.cli.net.CountersListCommand"/>
353 </command>
354 <command>
Madan Jampanibff6d8f2015-03-31 16:53:47 -0700355 <action class="org.onosproject.cli.net.TransactionsCommand"/>
356 </command>
357 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800358 <action class="org.onosproject.cli.net.ClusterDevicesCommand"/>
tom13cb4852014-09-11 12:44:17 -0700359 <completers>
360 <ref component-id="clusterIdCompleter"/>
361 </completers>
362 </command>
363 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800364 <action class="org.onosproject.cli.net.ClusterLinksCommand"/>
tom13cb4852014-09-11 12:44:17 -0700365 <completers>
366 <ref component-id="clusterIdCompleter"/>
367 </completers>
368 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700369
370 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800371 <action class="org.onosproject.cli.net.HostsListCommand"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700372 </command>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700373 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800374 <action class="org.onosproject.cli.net.HostRemoveCommand"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800375 <completers>
376 <ref component-id="hostIdCompleter"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800377 </completers>
378 </command>
379 <command>
Jonathan Harteb8c9472015-08-05 07:43:13 -0700380 <action class="org.onosproject.cli.net.InterfacesListCommand"/>
381 </command>
tom89b63c52014-09-16 09:19:51 -0700382 <command>
Jonathan Hart0bdf8372015-10-08 14:30:36 -0700383 <action class="org.onosproject.cli.net.InterfaceAddCommand"/>
Jonathan Hart7dbe6292015-11-10 08:33:17 -0800384 <completers>
385 <ref component-id="connectPointCompleter" />
386 <ref component-id="placeholderCompleter" />
387 </completers>
Jonathan Hart0bdf8372015-10-08 14:30:36 -0700388 </command>
389 <command>
390 <action class="org.onosproject.cli.net.InterfaceRemoveCommand"/>
391 <completers>
392 <ref component-id="connectPointCompleter"/>
Jonathan Hart7dbe6292015-11-10 08:33:17 -0800393 <ref component-id="placeholderCompleter" />
Jonathan Hart0bdf8372015-10-08 14:30:36 -0700394 </completers>
395 </command>
396 <command>
Jonathan Hart32600692015-03-09 10:38:40 -0700397 <action class="org.onosproject.cli.net.GroupsListCommand"/>
398 </command>
399
400 <command>
sangho538108b2015-04-08 14:29:20 -0700401 <action class="org.onosproject.cli.net.DevicePortStatsCommand"/>
402 </command>
403
404 <command>
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700405 <action class="org.onosproject.cli.net.TableStatisticsCommand"/>
406 </command>
407
408 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800409 <action class="org.onosproject.cli.net.FlowsListCommand"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700410 <completers>
alshabib144a2942014-09-25 18:44:02 -0700411 <ref component-id="flowRuleStatusCompleter"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700412 <ref component-id="deviceIdCompleter"/>
413 </completers>
tom1380eee2014-09-24 09:22:02 -0700414 </command>
415
416 <command>
Thomas Vachuska7f171b22015-08-21 12:49:08 -0700417 <action class="org.onosproject.cli.net.PacketRequestsListCommand"/>
418 </command>
419 <command>
420 <action class="org.onosproject.cli.net.PacketProcessorsListCommand"/>
421 </command>
422
423 <command>
suibin zhangcb7f0d12015-08-10 11:14:15 -0700424 <action class="org.onosproject.cli.net.AddTestFlowsCommand"/>
alshabib5afcbd72014-10-30 16:28:40 +0100425 </command>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800426 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800427 <action class="org.onosproject.cli.net.LeaderCommand"/>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800428 </command>
alshabib5afcbd72014-10-30 16:28:40 +0100429
430 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800431 <action class="org.onosproject.cli.net.WipeOutCommand"/>
tom89b63c52014-09-16 09:19:51 -0700432 </command>
Michele Santuari4b6019e2014-12-19 11:31:45 +0100433 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800434 <action class="org.onosproject.cli.net.AddMplsIntent"/>
435 <completers>
436 <ref component-id="connectPointCompleter"/>
Ray Milkey2a6e4452015-04-08 09:59:20 -0700437 <ref component-id="connectPointCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800438 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700439 <optional-completers>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800440 <entry key="-t" value-ref="ethTypeCompleter"/>
441 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
442 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
443 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
444 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700445 <entry key="-a" value-ref="allAppNameCompleter"/>
446 </optional-completers>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800447 </command>
Jonathan Harteb8c9472015-08-05 07:43:13 -0700448
jccde3e92e2015-03-28 01:40:44 -0700449 <command>
samuel7a5691a2015-05-23 00:36:32 +0800450 <action class="org.onosproject.cli.net.GlobalLabelCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700451 </command>
452 <command>
samuel7a5691a2015-05-23 00:36:32 +0800453 <action class="org.onosproject.cli.net.LabelResourceCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700454 </command>
455 <command>
samuel7a5691a2015-05-23 00:36:32 +0800456 <action class="org.onosproject.cli.net.GlobalLabelPoolCreateCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700457 </command>
458 <command>
samuel7a5691a2015-05-23 00:36:32 +0800459 <action class="org.onosproject.cli.net.LabelPoolCreateCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700460 </command>
461 <command>
samuel7a5691a2015-05-23 00:36:32 +0800462 <action class="org.onosproject.cli.net.GlobalLabelPoolDestoryCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700463 </command>
464 <command>
samuel7a5691a2015-05-23 00:36:32 +0800465 <action class="org.onosproject.cli.net.LabelPoolDestroyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700466 </command>
467 <command>
samuel7a5691a2015-05-23 00:36:32 +0800468 <action class="org.onosproject.cli.net.GlobalLabelReleaseCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700469 </command>
470 <command>
samuel7a5691a2015-05-23 00:36:32 +0800471 <action class="org.onosproject.cli.net.LabelReleaseCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700472 </command>
473 <command>
samuel7a5691a2015-05-23 00:36:32 +0800474 <action class="org.onosproject.cli.net.GlobalLabelApplyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700475 </command>
476 <command>
samuel7a5691a2015-05-23 00:36:32 +0800477 <action class="org.onosproject.cli.net.LabelApplyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700478 </command>
jccd8697232015-05-05 14:42:23 +0800479 <!-- tunnel commands -->
480 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700481 <action class="org.onosproject.cli.net.TunnelBorrowCommand"/>
jccd8697232015-05-05 14:42:23 +0800482 </command>
483 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700484 <action class="org.onosproject.cli.net.TunnelReturnCommand"/>
jccd8697232015-05-05 14:42:23 +0800485 </command>
486 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700487 <action class="org.onosproject.cli.net.TunnelQueryCommand"/>
jccd8697232015-05-05 14:42:23 +0800488 </command>
489 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700490 <action class="org.onosproject.cli.net.TunnelQuerySubscriptionCommand"/>
jccd8697232015-05-05 14:42:23 +0800491 </command>
cheng fan7716ec92015-05-31 01:53:19 +0800492 <command>
493 <action class="org.onosproject.cli.net.TunnelCreateCommand"/>
494 </command>
495 <command>
496 <action class="org.onosproject.cli.net.TunnelRemoveCommand"/>
497 </command>
498 <command>
499 <action class="org.onosproject.cli.net.TunnelUpdateCommand"/>
500 </command>
tom0eb04ca2014-08-25 14:34:51 -0700501 </command-bundle>
502
Changhoon Yoonb856b812015-08-10 03:47:19 +0900503 <bean id="reviewAppNameCompleter" class="org.onosproject.cli.security.ReviewApplicationNameCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800504 <bean id="appCommandCompleter" class="org.onosproject.cli.app.ApplicationCommandCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -0800505 <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700506 <bean id="allAppNameCompleter" class="org.onosproject.cli.app.AllApplicationNamesCompleter"/>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700507 <bean id="appIdWithIntentNameCompleter" class="org.onosproject.cli.app.ApplicationIdWithIntentNameCompleter"/>
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700508 <bean id="cfgCommandCompleter" class="org.onosproject.cli.cfg.ComponentConfigCommandCompleter"/>
509 <bean id="componentNameCompleter" class="org.onosproject.cli.cfg.ComponentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -0700510 <bean id="componentPropertyNameCompleter" class="org.onosproject.cli.cfg.ComponentPropertyNameCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800511 <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/>
512 <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
HIGUCHI Yuta848324f2015-12-04 21:11:26 -0800513 <bean id="portNumberCompleter" class="org.onosproject.cli.net.PortNumberCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800514 <bean id="clusterIdCompleter" class="org.onosproject.cli.net.ClusterIdCompleter"/>
515 <bean id="roleCompleter" class="org.onosproject.cli.net.RoleCompleter"/>
516 <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/>
Brian O'Connor264cb992015-06-04 17:16:57 -0700517 <bean id="intentKeyCompleter" class="org.onosproject.cli.net.IntentKeyCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800518 <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/>
519 <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700520 <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800521 <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/>
522 <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -0700523 <bean id="driverNameCompleter" class="org.onosproject.cli.net.DriverNameCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800524 <bean id="Icmp6TypeCompleter" class="org.onosproject.cli.net.Icmp6TypeCompleter"/>
525 <bean id="Icmp6CodeCompleter" class="org.onosproject.cli.net.Icmp6CodeCompleter"/>
526 <bean id="ExtHeaderCompleter" class="org.onosproject.cli.net.ExtHeaderCompleter"/>
tom6d2a43e2014-09-08 01:50:20 -0700527
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700528 <bean id="startStopCompleter" class="org.onosproject.cli.StartStopCompleter"/>
Flavio Castro4b519412015-07-24 12:57:59 -0700529 <bean id="metricNameCompleter" class="org.onosproject.cli.MetricNameCompleter"/>
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700530 <bean id="upDownCompleter" class="org.onosproject.cli.UpDownCompleter"/>
Michele Santuari05b882c2015-11-25 09:40:46 +0100531 <bean id="encapTypeCompleter" class="org.onosproject.cli.net.EncapTypeCompleter"/>
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700532
Jonathan Hart7dbe6292015-11-10 08:33:17 -0800533 <bean id="placeholderCompleter" class="org.onosproject.cli.PlaceholderCompleter"/>
534
tom0eb04ca2014-08-25 14:34:51 -0700535</blueprint>