blob: bf2cb55a45323e2d8e4e6adc5f4c6f3d8d6fe8dd [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>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080024 <action class="org.onosproject.cli.app.ApplicationsListCommand"/>
25 </command>
26
27 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080028 <action class="org.onosproject.cli.app.ApplicationCommand"/>
29 <completers>
30 <ref component-id="appCommandCompleter"/>
31 <ref component-id="appNameCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080032 </completers>
33 </command>
34
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080035 <command>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070036 <action class="org.onosproject.cli.cfg.ComponentConfigCommand"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080037 <completers>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070038 <ref component-id="cfgCommandCompleter"/>
39 <ref component-id="componentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -070040 <ref component-id="componentPropertyNameCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080041 <null/>
42 </completers>
43 </command>
44
45 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080046 <action class="org.onosproject.cli.MetricsListCommand"/>
Yuta HIGUCHI6a462832014-11-23 23:56:03 -080047 </command>
48
tom9b4030d2014-10-06 10:39:03 -070049 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080050 <action class="org.onosproject.cli.NodesListCommand"/>
tome4729872014-09-23 00:37:37 -070051 </command>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070052
53 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080054 <action class="org.onosproject.cli.RolesCommand"/>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070055 </command>
tom9710fb42014-09-29 11:35:28 -070056 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080057 <action class="org.onosproject.cli.MastersListCommand"/>
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070058 </command>
59 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080060 <action class="org.onosproject.cli.BalanceMastersCommand"/>
Thomas Vachuskae02e11c2014-11-24 16:13:52 -080061 </command>
62 <command>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080063 <action class="org.onosproject.cli.app.ApplicationIdListCommand"/>
alshabiba7f7ca82014-09-22 11:41:23 -070064 </command>
tom1380eee2014-09-24 09:22:02 -070065
alshabiba7f7ca82014-09-22 11:41:23 -070066 <command>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070067 <action class="org.onosproject.cli.net.DriversListCommand"/>
68 <completers>
69 <ref component-id="driverNameCompleter"/>
70 <null/>
71 </completers>
72 </command>
73
74 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080075 <action class="org.onosproject.cli.net.DevicesListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -070076 </command>
77 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080078 <action class="org.onosproject.cli.net.DevicePortsListCommand"/>
tom0eb04ca2014-08-25 14:34:51 -070079 <completers>
tom6d2a43e2014-09-08 01:50:20 -070080 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070081 <null/>
tom0eb04ca2014-08-25 14:34:51 -070082 </completers>
83 </command>
tom6d2a43e2014-09-08 01:50:20 -070084 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080085 <action class="org.onosproject.cli.net.DeviceRemoveCommand"/>
tomc290a122014-09-08 14:27:13 -070086 <completers>
87 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070088 <null/>
tomc290a122014-09-08 14:27:13 -070089 </completers>
90 </command>
tom5f35f7c2014-09-08 18:38:19 -070091 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080092 <action class="org.onosproject.cli.net.DeviceRoleCommand"/>
tom5f35f7c2014-09-08 18:38:19 -070093 <completers>
94 <ref component-id="deviceIdCompleter"/>
toma6235a52014-10-15 13:25:39 -070095 <ref component-id="nodeIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -070096 <ref component-id="roleCompleter"/>
97 <null/>
tom5f35f7c2014-09-08 18:38:19 -070098 </completers>
99 </command>
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700100 <command>
101 <action class="org.onosproject.cli.net.AnnotateDeviceCommand"/>
102 <completers>
103 <ref component-id="deviceIdCompleter"/>
104 <null/>
105 </completers>
106 </command>
tomc290a122014-09-08 14:27:13 -0700107
108 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800109 <action class="org.onosproject.cli.net.LinksListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -0700110 <completers>
111 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700112 <null/>
tom6d2a43e2014-09-08 01:50:20 -0700113 </completers>
114 </command>
tom13cb4852014-09-11 12:44:17 -0700115
116 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800117 <action class="org.onosproject.cli.net.TopologyCommand"/>
tom13cb4852014-09-11 12:44:17 -0700118 </command>
119 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800120 <action class="org.onosproject.cli.net.PathListCommand"/>
tom9eb57fb2014-09-11 19:42:38 -0700121 <completers>
122 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700123 <ref component-id="deviceIdCompleter"/>
124 <null/>
tom9eb57fb2014-09-11 19:42:38 -0700125 </completers>
126 </command>
tomf5c9d922014-10-03 15:22:03 -0700127
tom9eb57fb2014-09-11 19:42:38 -0700128 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800129 <action class="org.onosproject.cli.net.IntentsListCommand"/>
tom0511a522014-10-04 12:06:02 -0700130 </command>
131 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800132 <action class="org.onosproject.cli.net.IntentRemoveCommand"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700133 <completers>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700134 <ref component-id="appIdWithIntentNameCompleter"/>
tom6db1f0a2014-10-07 09:12:29 -0700135 <ref component-id="intentIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700136 <null/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700137 </completers>
138 </command>
tomf5c9d922014-10-03 15:22:03 -0700139 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800140 <action class="org.onosproject.cli.net.AddHostToHostIntentCommand"/>
tom0511a522014-10-04 12:06:02 -0700141 <completers>
tom6db1f0a2014-10-07 09:12:29 -0700142 <ref component-id="hostIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700143 <ref component-id="hostIdCompleter"/>
144 <null/>
tom0511a522014-10-04 12:06:02 -0700145 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700146 <optional-completers>
Charles M.C. Chan2d89eca2015-04-29 21:32:17 +0800147 <entry key="-t" value-ref="ethTypeCompleter"/>
148 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
149 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
150 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
151 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700152 <entry key="-a" value-ref="allAppNameCompleter"/>
153 </optional-completers>
tomf5c9d922014-10-03 15:22:03 -0700154 </command>
Ray Milkeya058c732014-10-08 13:52:34 -0700155 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800156 <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/>
Ray Milkeya058c732014-10-08 13:52:34 -0700157 <completers>
158 <ref component-id="connectPointCompleter"/>
159 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700160 <null/>
Ray Milkeya058c732014-10-08 13:52:34 -0700161 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700162 <optional-completers>
163 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800164 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800165 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
166 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
167 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700168 <entry key="-a" value-ref="allAppNameCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700169 </optional-completers>
Ray Milkeya058c732014-10-08 13:52:34 -0700170 </command>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700171 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800172 <action class="org.onosproject.cli.net.AddOpticalIntentCommand"/>
Brian O'Connor5296b322014-10-23 14:59:05 -0700173 <completers>
174 <ref component-id="connectPointCompleter"/>
175 <ref component-id="connectPointCompleter"/>
176 <null/>
177 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700178 <optional-completers>
179 <entry key="-a" value-ref="allAppNameCompleter"/>
180 </optional-completers>
Brian O'Connor5296b322014-10-23 14:59:05 -0700181 </command>
182 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800183 <action class="org.onosproject.cli.net.GetStatistics"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800184 <completers>
185 <ref component-id="connectPointCompleter"/>
186 </completers>
alshabib23a8d7c2014-10-22 21:53:39 -0700187 </command>
188 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800189 <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/>
Ray Milkey0742ec92014-10-13 08:39:55 -0700190 <completers>
191 <ref component-id="connectPointCompleter"/>
192 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700193 <optional-completers>
194 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800195 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800196 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
197 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
198 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700199 <entry key="-a" value-ref="allAppNameCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700200 </optional-completers>
Ray Milkey0742ec92014-10-13 08:39:55 -0700201 </command>
202 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800203 <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100204 <completers>
205 <ref component-id="connectPointCompleter"/>
206 </completers>
207 <optional-completers>
208 <entry key="-t" value-ref="ethTypeCompleter"/>
Pavlin Radoslavov70761df2015-03-09 11:05:49 -0700209 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800210 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
211 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
212 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700213 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100214 </optional-completers>
215 </command>
216 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800217 <action class="org.onosproject.cli.net.IntentPushTestCommand"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700218 <completers>
219 <ref component-id="connectPointCompleter"/>
220 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700221 <ref component-id="nullCompleter"/>
222 <null/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700223 </completers>
224 </command>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700225 <command>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800226 <action class="org.onosproject.cli.net.IntentCycleCommand"/>
227 <completers>
228 <ref component-id="connectPointCompleter"/>
229 <ref component-id="connectPointCompleter"/>
230 <ref component-id="nullCompleter"/>
231 <null/>
232 </completers>
233 </command>
234 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800235 <action class="org.onosproject.cli.net.RandomIntentCommand"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800236 <completers>
237 <ref component-id="nullCompleter"/>
238 <null/>
239 </completers>
240 </command>
241 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800242 <action class="org.onosproject.cli.net.ResourceAllocationsCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700243 <completers>
244 <ref component-id="connectPointCompleter"/>
245 <ref component-id="connectPointCompleter"/>
246 <null/>
247 </completers>
248 </command>
249 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800250 <action class="org.onosproject.cli.net.ResourceAvailableCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700251 <completers>
252 <ref component-id="connectPointCompleter"/>
253 <ref component-id="connectPointCompleter"/>
254 <null/>
255 </completers>
256 </command>
Brian O'Connor66630c82014-10-02 21:08:19 -0700257 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800258 <action class="org.onosproject.cli.net.ClustersListCommand"/>
tom13cb4852014-09-11 12:44:17 -0700259 </command>
260 <command>
Jonathan Hart054da972015-02-18 17:30:28 -0800261 <action class="org.onosproject.cli.net.PartitionsListCommand"/>
262 </command>
263 <command>
Madan Jampania89f8f92015-04-01 14:39:54 -0700264 <action class="org.onosproject.cli.net.MapsListCommand"/>
265 </command>
266 <command>
Madan Jampanib5d72d52015-04-03 16:53:50 -0700267 <action class="org.onosproject.cli.net.CountersListCommand"/>
268 </command>
269 <command>
Madan Jampanibff6d8f2015-03-31 16:53:47 -0700270 <action class="org.onosproject.cli.net.TransactionsCommand"/>
271 </command>
272 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800273 <action class="org.onosproject.cli.net.ClusterDevicesCommand"/>
tom13cb4852014-09-11 12:44:17 -0700274 <completers>
275 <ref component-id="clusterIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700276 <null/>
tom13cb4852014-09-11 12:44:17 -0700277 </completers>
278 </command>
279 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800280 <action class="org.onosproject.cli.net.ClusterLinksCommand"/>
tom13cb4852014-09-11 12:44:17 -0700281 <completers>
282 <ref component-id="clusterIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700283 <null/>
tom13cb4852014-09-11 12:44:17 -0700284 </completers>
285 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700286
287 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800288 <action class="org.onosproject.cli.net.HostsListCommand"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700289 </command>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700290 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800291 <action class="org.onosproject.cli.net.HostRemoveCommand"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800292 <completers>
293 <ref component-id="hostIdCompleter"/>
294 <null/>
295 </completers>
296 </command>
297 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800298 <action class="org.onosproject.cli.net.AddressBindingsListCommand"/>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700299 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700300
tom89b63c52014-09-16 09:19:51 -0700301 <command>
Jonathan Hart32600692015-03-09 10:38:40 -0700302 <action class="org.onosproject.cli.net.GroupsListCommand"/>
303 </command>
304
305 <command>
sangho538108b2015-04-08 14:29:20 -0700306 <action class="org.onosproject.cli.net.DevicePortStatsCommand"/>
307 </command>
308
309 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800310 <action class="org.onosproject.cli.net.FlowsListCommand"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700311 <completers>
alshabib144a2942014-09-25 18:44:02 -0700312 <ref component-id="flowRuleStatusCompleter"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700313 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700314 <null/>
alshabib99b8fdc2014-09-25 14:30:22 -0700315 </completers>
tom1380eee2014-09-24 09:22:02 -0700316 </command>
317
318 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800319 <action class="org.onosproject.cli.net.AddFlowsCommand"/>
alshabib5afcbd72014-10-30 16:28:40 +0100320 </command>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800321 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800322 <action class="org.onosproject.cli.net.LeaderCommand"/>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800323 </command>
alshabib5afcbd72014-10-30 16:28:40 +0100324
325 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800326 <action class="org.onosproject.cli.net.WipeOutCommand"/>
tom89b63c52014-09-16 09:19:51 -0700327 </command>
Michele Santuari4b6019e2014-12-19 11:31:45 +0100328 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800329 <action class="org.onosproject.cli.net.AddMplsIntent"/>
330 <completers>
331 <ref component-id="connectPointCompleter"/>
Ray Milkey2a6e4452015-04-08 09:59:20 -0700332 <ref component-id="connectPointCompleter"/>
333 <null/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800334 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700335 <optional-completers>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800336 <entry key="-t" value-ref="ethTypeCompleter"/>
337 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
338 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
339 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
340 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700341 <entry key="-a" value-ref="allAppNameCompleter"/>
342 </optional-completers>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800343 </command>
tom0eb04ca2014-08-25 14:34:51 -0700344 </command-bundle>
345
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800346 <bean id="appCommandCompleter" class="org.onosproject.cli.app.ApplicationCommandCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -0800347 <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700348 <bean id="allAppNameCompleter" class="org.onosproject.cli.app.AllApplicationNamesCompleter"/>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700349 <bean id="appIdWithIntentNameCompleter" class="org.onosproject.cli.app.ApplicationIdWithIntentNameCompleter"/>
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700350 <bean id="cfgCommandCompleter" class="org.onosproject.cli.cfg.ComponentConfigCommandCompleter"/>
351 <bean id="componentNameCompleter" class="org.onosproject.cli.cfg.ComponentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -0700352 <bean id="componentPropertyNameCompleter" class="org.onosproject.cli.cfg.ComponentPropertyNameCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800353 <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/>
354 <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
355 <bean id="clusterIdCompleter" class="org.onosproject.cli.net.ClusterIdCompleter"/>
356 <bean id="roleCompleter" class="org.onosproject.cli.net.RoleCompleter"/>
357 <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/>
358 <bean id="intentIdCompleter" class="org.onosproject.cli.net.IntentIdCompleter"/>
359 <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/>
360 <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700361 <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800362 <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/>
363 <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -0700364 <bean id="driverNameCompleter" class="org.onosproject.cli.net.DriverNameCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800365 <bean id="Icmp6TypeCompleter" class="org.onosproject.cli.net.Icmp6TypeCompleter"/>
366 <bean id="Icmp6CodeCompleter" class="org.onosproject.cli.net.Icmp6CodeCompleter"/>
367 <bean id="ExtHeaderCompleter" class="org.onosproject.cli.net.ExtHeaderCompleter"/>
tom6d2a43e2014-09-08 01:50:20 -0700368
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700369 <bean id="startStopCompleter" class="org.onosproject.cli.StartStopCompleter"/>
370 <bean id="upDownCompleter" class="org.onosproject.cli.UpDownCompleter"/>
371
tom0eb04ca2014-08-25 14:34:51 -0700372</blueprint>