blob: ca470e3ab676f0ce27fd00e805c646b1c073ff7b [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
23 <command>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090024 <action class="org.onosproject.cli.security.PermissionCommand"/>
25 <completers>
26 <ref component-id="permCommandCompleter"/>
27 <ref component-id="permAppNameCompleter"/>
28 <ref component-id="permNameCompleter"/>
29 </completers>
30 </command>
31
32 <command>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080033 <action class="org.onosproject.cli.app.ApplicationsListCommand"/>
34 </command>
35
36 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080037 <action class="org.onosproject.cli.app.ApplicationCommand"/>
38 <completers>
39 <ref component-id="appCommandCompleter"/>
40 <ref component-id="appNameCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080041 </completers>
42 </command>
43
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080044 <command>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070045 <action class="org.onosproject.cli.cfg.ComponentConfigCommand"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080046 <completers>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070047 <ref component-id="cfgCommandCompleter"/>
48 <ref component-id="componentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -070049 <ref component-id="componentPropertyNameCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080050 </completers>
51 </command>
52
53 <command>
Thomas Vachuska96d55b12015-05-11 08:52:03 -070054 <action class="org.onosproject.cli.cfg.NetworkConfigRegistryCommand"/>
55 </command>
56
57 <command>
58 <action class="org.onosproject.cli.cfg.NetworkConfigCommand"/>
59 </command>
60
61 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080062 <action class="org.onosproject.cli.MetricsListCommand"/>
Yuta HIGUCHI6a462832014-11-23 23:56:03 -080063 </command>
64
tom9b4030d2014-10-06 10:39:03 -070065 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080066 <action class="org.onosproject.cli.NodesListCommand"/>
tome4729872014-09-23 00:37:37 -070067 </command>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070068
69 <command>
Thomas Vachuska4cfcc562015-06-03 09:51:02 -070070 <action class="org.onosproject.cli.UiViewListCommand"/>
71 </command>
72
73 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080074 <action class="org.onosproject.cli.RolesCommand"/>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070075 </command>
tom9710fb42014-09-29 11:35:28 -070076 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080077 <action class="org.onosproject.cli.MastersListCommand"/>
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070078 </command>
79 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080080 <action class="org.onosproject.cli.BalanceMastersCommand"/>
Thomas Vachuskae02e11c2014-11-24 16:13:52 -080081 </command>
82 <command>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080083 <action class="org.onosproject.cli.app.ApplicationIdListCommand"/>
alshabiba7f7ca82014-09-22 11:41:23 -070084 </command>
tom1380eee2014-09-24 09:22:02 -070085
alshabiba7f7ca82014-09-22 11:41:23 -070086 <command>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070087 <action class="org.onosproject.cli.net.DriversListCommand"/>
88 <completers>
89 <ref component-id="driverNameCompleter"/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070090 </completers>
91 </command>
92
93 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080094 <action class="org.onosproject.cli.net.DevicesListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -070095 </command>
96 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080097 <action class="org.onosproject.cli.net.DevicePortsListCommand"/>
tom0eb04ca2014-08-25 14:34:51 -070098 <completers>
tom6d2a43e2014-09-08 01:50:20 -070099 <ref component-id="deviceIdCompleter"/>
tom0eb04ca2014-08-25 14:34:51 -0700100 </completers>
101 </command>
tom6d2a43e2014-09-08 01:50:20 -0700102 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800103 <action class="org.onosproject.cli.net.DeviceRemoveCommand"/>
tomc290a122014-09-08 14:27:13 -0700104 <completers>
105 <ref component-id="deviceIdCompleter"/>
106 </completers>
107 </command>
tom5f35f7c2014-09-08 18:38:19 -0700108 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800109 <action class="org.onosproject.cli.net.DeviceRoleCommand"/>
tom5f35f7c2014-09-08 18:38:19 -0700110 <completers>
111 <ref component-id="deviceIdCompleter"/>
toma6235a52014-10-15 13:25:39 -0700112 <ref component-id="nodeIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700113 <ref component-id="roleCompleter"/>
tom5f35f7c2014-09-08 18:38:19 -0700114 </completers>
115 </command>
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700116 <command>
117 <action class="org.onosproject.cli.net.AnnotateDeviceCommand"/>
118 <completers>
119 <ref component-id="deviceIdCompleter"/>
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700120 </completers>
121 </command>
tomc290a122014-09-08 14:27:13 -0700122
123 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800124 <action class="org.onosproject.cli.net.LinksListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -0700125 <completers>
126 <ref component-id="deviceIdCompleter"/>
127 </completers>
128 </command>
tom13cb4852014-09-11 12:44:17 -0700129
130 <command>
Aaron Kruglikova2b59152015-06-24 14:01:41 -0700131 <action class="org.onosproject.cli.net.EdgePortsListCommand"/>
132 <completers>
133 <ref component-id="deviceIdCompleter"/>
134 </completers>
135 </command>
136
137 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800138 <action class="org.onosproject.cli.net.TopologyCommand"/>
tom13cb4852014-09-11 12:44:17 -0700139 </command>
140 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800141 <action class="org.onosproject.cli.net.PathListCommand"/>
tom9eb57fb2014-09-11 19:42:38 -0700142 <completers>
143 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700144 <ref component-id="deviceIdCompleter"/>
tom9eb57fb2014-09-11 19:42:38 -0700145 </completers>
146 </command>
tomf5c9d922014-10-03 15:22:03 -0700147
tom9eb57fb2014-09-11 19:42:38 -0700148 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800149 <action class="org.onosproject.cli.net.IntentsListCommand"/>
tom0511a522014-10-04 12:06:02 -0700150 </command>
151 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800152 <action class="org.onosproject.cli.net.IntentRemoveCommand"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700153 <completers>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700154 <ref component-id="appIdWithIntentNameCompleter"/>
Brian O'Connor264cb992015-06-04 17:16:57 -0700155 <ref component-id="intentKeyCompleter"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700156 </completers>
157 </command>
tomf5c9d922014-10-03 15:22:03 -0700158 <command>
Brian O'Connor72df5b12015-06-02 16:50:18 -0700159 <action class="org.onosproject.cli.net.IntentPurgeCommand"/>
160 </command>
161 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800162 <action class="org.onosproject.cli.net.AddHostToHostIntentCommand"/>
tom0511a522014-10-04 12:06:02 -0700163 <completers>
tom6db1f0a2014-10-07 09:12:29 -0700164 <ref component-id="hostIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700165 <ref component-id="hostIdCompleter"/>
tom0511a522014-10-04 12:06:02 -0700166 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700167 <optional-completers>
Charles M.C. Chan2d89eca2015-04-29 21:32:17 +0800168 <entry key="-t" value-ref="ethTypeCompleter"/>
169 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
170 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
171 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
172 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700173 <entry key="-a" value-ref="allAppNameCompleter"/>
174 </optional-completers>
tomf5c9d922014-10-03 15:22:03 -0700175 </command>
Ray Milkeya058c732014-10-08 13:52:34 -0700176 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800177 <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/>
Ray Milkeya058c732014-10-08 13:52:34 -0700178 <completers>
179 <ref component-id="connectPointCompleter"/>
180 <ref component-id="connectPointCompleter"/>
181 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700182 <optional-completers>
183 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800184 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800185 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
186 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
187 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700188 <entry key="-a" value-ref="allAppNameCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700189 </optional-completers>
Ray Milkeya058c732014-10-08 13:52:34 -0700190 </command>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700191 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800192 <action class="org.onosproject.cli.net.AddOpticalIntentCommand"/>
Brian O'Connor5296b322014-10-23 14:59:05 -0700193 <completers>
194 <ref component-id="connectPointCompleter"/>
195 <ref component-id="connectPointCompleter"/>
Brian O'Connor5296b322014-10-23 14:59:05 -0700196 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700197 <optional-completers>
198 <entry key="-a" value-ref="allAppNameCompleter"/>
199 </optional-completers>
Brian O'Connor5296b322014-10-23 14:59:05 -0700200 </command>
201 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800202 <action class="org.onosproject.cli.net.GetStatistics"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800203 <completers>
204 <ref component-id="connectPointCompleter"/>
205 </completers>
alshabib23a8d7c2014-10-22 21:53:39 -0700206 </command>
207 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800208 <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/>
Ray Milkey0742ec92014-10-13 08:39:55 -0700209 <completers>
210 <ref component-id="connectPointCompleter"/>
211 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700212 <optional-completers>
213 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800214 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800215 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
216 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
217 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700218 <entry key="-a" value-ref="allAppNameCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700219 </optional-completers>
Ray Milkey0742ec92014-10-13 08:39:55 -0700220 </command>
221 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800222 <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100223 <completers>
224 <ref component-id="connectPointCompleter"/>
225 </completers>
226 <optional-completers>
227 <entry key="-t" value-ref="ethTypeCompleter"/>
Pavlin Radoslavov70761df2015-03-09 11:05:49 -0700228 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800229 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
230 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
231 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700232 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100233 </optional-completers>
234 </command>
235 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800236 <action class="org.onosproject.cli.net.IntentPushTestCommand"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700237 <completers>
238 <ref component-id="connectPointCompleter"/>
239 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700240 <ref component-id="nullCompleter"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700241 </completers>
242 </command>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700243 <command>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800244 <action class="org.onosproject.cli.net.IntentCycleCommand"/>
245 <completers>
246 <ref component-id="connectPointCompleter"/>
247 <ref component-id="connectPointCompleter"/>
248 <ref component-id="nullCompleter"/>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800249 </completers>
250 </command>
251 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800252 <action class="org.onosproject.cli.net.RandomIntentCommand"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800253 <completers>
254 <ref component-id="nullCompleter"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800255 </completers>
256 </command>
257 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800258 <action class="org.onosproject.cli.net.ResourceAllocationsCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700259 <completers>
260 <ref component-id="connectPointCompleter"/>
261 <ref component-id="connectPointCompleter"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700262 </completers>
263 </command>
264 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800265 <action class="org.onosproject.cli.net.ResourceAvailableCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700266 <completers>
267 <ref component-id="connectPointCompleter"/>
268 <ref component-id="connectPointCompleter"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700269 </completers>
270 </command>
Brian O'Connor66630c82014-10-02 21:08:19 -0700271 <command>
Ayaka Koshibe4699b292015-04-28 14:33:10 -0700272 <action class="org.onosproject.cli.net.LinkResourceTestCommand"/>
273 <completers>
274 <ref component-id="connectPointCompleter"/>
275 <ref component-id="connectPointCompleter"/>
276 <null/>
277 </completers>
278 </command>
279 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800280 <action class="org.onosproject.cli.net.ClustersListCommand"/>
tom13cb4852014-09-11 12:44:17 -0700281 </command>
282 <command>
Jonathan Hart054da972015-02-18 17:30:28 -0800283 <action class="org.onosproject.cli.net.PartitionsListCommand"/>
284 </command>
285 <command>
Madan Jampania89f8f92015-04-01 14:39:54 -0700286 <action class="org.onosproject.cli.net.MapsListCommand"/>
287 </command>
288 <command>
Madan Jampanib5d72d52015-04-03 16:53:50 -0700289 <action class="org.onosproject.cli.net.CountersListCommand"/>
290 </command>
291 <command>
Madan Jampanibff6d8f2015-03-31 16:53:47 -0700292 <action class="org.onosproject.cli.net.TransactionsCommand"/>
293 </command>
294 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800295 <action class="org.onosproject.cli.net.ClusterDevicesCommand"/>
tom13cb4852014-09-11 12:44:17 -0700296 <completers>
297 <ref component-id="clusterIdCompleter"/>
298 </completers>
299 </command>
300 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800301 <action class="org.onosproject.cli.net.ClusterLinksCommand"/>
tom13cb4852014-09-11 12:44:17 -0700302 <completers>
303 <ref component-id="clusterIdCompleter"/>
304 </completers>
305 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700306
307 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800308 <action class="org.onosproject.cli.net.HostsListCommand"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700309 </command>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700310 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800311 <action class="org.onosproject.cli.net.HostRemoveCommand"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800312 <completers>
313 <ref component-id="hostIdCompleter"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800314 </completers>
315 </command>
316 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800317 <action class="org.onosproject.cli.net.AddressBindingsListCommand"/>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700318 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700319
tom89b63c52014-09-16 09:19:51 -0700320 <command>
Jonathan Hart32600692015-03-09 10:38:40 -0700321 <action class="org.onosproject.cli.net.GroupsListCommand"/>
322 </command>
323
324 <command>
sangho538108b2015-04-08 14:29:20 -0700325 <action class="org.onosproject.cli.net.DevicePortStatsCommand"/>
326 </command>
327
328 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800329 <action class="org.onosproject.cli.net.FlowsListCommand"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700330 <completers>
alshabib144a2942014-09-25 18:44:02 -0700331 <ref component-id="flowRuleStatusCompleter"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700332 <ref component-id="deviceIdCompleter"/>
333 </completers>
tom1380eee2014-09-24 09:22:02 -0700334 </command>
335
336 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800337 <action class="org.onosproject.cli.net.AddFlowsCommand"/>
alshabib5afcbd72014-10-30 16:28:40 +0100338 </command>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800339 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800340 <action class="org.onosproject.cli.net.LeaderCommand"/>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800341 </command>
alshabib5afcbd72014-10-30 16:28:40 +0100342
343 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800344 <action class="org.onosproject.cli.net.WipeOutCommand"/>
tom89b63c52014-09-16 09:19:51 -0700345 </command>
Michele Santuari4b6019e2014-12-19 11:31:45 +0100346 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800347 <action class="org.onosproject.cli.net.AddMplsIntent"/>
348 <completers>
349 <ref component-id="connectPointCompleter"/>
Ray Milkey2a6e4452015-04-08 09:59:20 -0700350 <ref component-id="connectPointCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800351 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700352 <optional-completers>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800353 <entry key="-t" value-ref="ethTypeCompleter"/>
354 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
355 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
356 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
357 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700358 <entry key="-a" value-ref="allAppNameCompleter"/>
359 </optional-completers>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800360 </command>
jccde3e92e2015-03-28 01:40:44 -0700361
362 <command>
samuel7a5691a2015-05-23 00:36:32 +0800363 <action class="org.onosproject.cli.net.GlobalLabelCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700364 </command>
365 <command>
samuel7a5691a2015-05-23 00:36:32 +0800366 <action class="org.onosproject.cli.net.LabelResourceCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700367 </command>
368 <command>
samuel7a5691a2015-05-23 00:36:32 +0800369 <action class="org.onosproject.cli.net.GlobalLabelPoolCreateCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700370 </command>
371 <command>
samuel7a5691a2015-05-23 00:36:32 +0800372 <action class="org.onosproject.cli.net.LabelPoolCreateCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700373 </command>
374 <command>
samuel7a5691a2015-05-23 00:36:32 +0800375 <action class="org.onosproject.cli.net.GlobalLabelPoolDestoryCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700376 </command>
377 <command>
samuel7a5691a2015-05-23 00:36:32 +0800378 <action class="org.onosproject.cli.net.LabelPoolDestroyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700379 </command>
380 <command>
samuel7a5691a2015-05-23 00:36:32 +0800381 <action class="org.onosproject.cli.net.GlobalLabelReleaseCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700382 </command>
383 <command>
samuel7a5691a2015-05-23 00:36:32 +0800384 <action class="org.onosproject.cli.net.LabelReleaseCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700385 </command>
386 <command>
samuel7a5691a2015-05-23 00:36:32 +0800387 <action class="org.onosproject.cli.net.GlobalLabelApplyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700388 </command>
389 <command>
samuel7a5691a2015-05-23 00:36:32 +0800390 <action class="org.onosproject.cli.net.LabelApplyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700391 </command>
jccd8697232015-05-05 14:42:23 +0800392 <!-- tunnel commands -->
393 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700394 <action class="org.onosproject.cli.net.TunnelBorrowCommand"/>
jccd8697232015-05-05 14:42:23 +0800395 </command>
396 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700397 <action class="org.onosproject.cli.net.TunnelReturnCommand"/>
jccd8697232015-05-05 14:42:23 +0800398 </command>
399 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700400 <action class="org.onosproject.cli.net.TunnelQueryCommand"/>
jccd8697232015-05-05 14:42:23 +0800401 </command>
402 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700403 <action class="org.onosproject.cli.net.TunnelQuerySubscriptionCommand"/>
jccd8697232015-05-05 14:42:23 +0800404 </command>
cheng fan7716ec92015-05-31 01:53:19 +0800405 <command>
406 <action class="org.onosproject.cli.net.TunnelCreateCommand"/>
407 </command>
408 <command>
409 <action class="org.onosproject.cli.net.TunnelRemoveCommand"/>
410 </command>
411 <command>
412 <action class="org.onosproject.cli.net.TunnelUpdateCommand"/>
413 </command>
tom0eb04ca2014-08-25 14:34:51 -0700414 </command-bundle>
415
Changhoon Yoon23dee8f2015-05-18 22:19:49 +0900416 <bean id="permAppNameCompleter" class="org.onosproject.cli.security.PermissionApplicationNameCompleter"/>
417 <bean id="permCommandCompleter" class="org.onosproject.cli.security.PermissionCommandCompleter"/>
418 <bean id="permNameCompleter" class="org.onosproject.cli.security.PermissionNameCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800419 <bean id="appCommandCompleter" class="org.onosproject.cli.app.ApplicationCommandCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -0800420 <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700421 <bean id="allAppNameCompleter" class="org.onosproject.cli.app.AllApplicationNamesCompleter"/>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700422 <bean id="appIdWithIntentNameCompleter" class="org.onosproject.cli.app.ApplicationIdWithIntentNameCompleter"/>
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700423 <bean id="cfgCommandCompleter" class="org.onosproject.cli.cfg.ComponentConfigCommandCompleter"/>
424 <bean id="componentNameCompleter" class="org.onosproject.cli.cfg.ComponentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -0700425 <bean id="componentPropertyNameCompleter" class="org.onosproject.cli.cfg.ComponentPropertyNameCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800426 <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/>
427 <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
428 <bean id="clusterIdCompleter" class="org.onosproject.cli.net.ClusterIdCompleter"/>
429 <bean id="roleCompleter" class="org.onosproject.cli.net.RoleCompleter"/>
430 <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/>
Brian O'Connor264cb992015-06-04 17:16:57 -0700431 <bean id="intentKeyCompleter" class="org.onosproject.cli.net.IntentKeyCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800432 <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/>
433 <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700434 <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800435 <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/>
436 <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -0700437 <bean id="driverNameCompleter" class="org.onosproject.cli.net.DriverNameCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800438 <bean id="Icmp6TypeCompleter" class="org.onosproject.cli.net.Icmp6TypeCompleter"/>
439 <bean id="Icmp6CodeCompleter" class="org.onosproject.cli.net.Icmp6CodeCompleter"/>
440 <bean id="ExtHeaderCompleter" class="org.onosproject.cli.net.ExtHeaderCompleter"/>
tom6d2a43e2014-09-08 01:50:20 -0700441
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700442 <bean id="startStopCompleter" class="org.onosproject.cli.StartStopCompleter"/>
443 <bean id="upDownCompleter" class="org.onosproject.cli.UpDownCompleter"/>
444
tom0eb04ca2014-08-25 14:34:51 -0700445</blueprint>