blob: 2ec33b2d29e2be76e4deb5895a3c132f25674a6d [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>
Brian O'Connorabafb502014-12-02 22:26:20 -080054 <action class="org.onosproject.cli.MetricsListCommand"/>
Yuta HIGUCHI6a462832014-11-23 23:56:03 -080055 </command>
56
tom9b4030d2014-10-06 10:39:03 -070057 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080058 <action class="org.onosproject.cli.NodesListCommand"/>
tome4729872014-09-23 00:37:37 -070059 </command>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070060
61 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080062 <action class="org.onosproject.cli.RolesCommand"/>
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070063 </command>
tom9710fb42014-09-29 11:35:28 -070064 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080065 <action class="org.onosproject.cli.MastersListCommand"/>
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070066 </command>
67 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080068 <action class="org.onosproject.cli.BalanceMastersCommand"/>
Thomas Vachuskae02e11c2014-11-24 16:13:52 -080069 </command>
70 <command>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080071 <action class="org.onosproject.cli.app.ApplicationIdListCommand"/>
alshabiba7f7ca82014-09-22 11:41:23 -070072 </command>
tom1380eee2014-09-24 09:22:02 -070073
alshabiba7f7ca82014-09-22 11:41:23 -070074 <command>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070075 <action class="org.onosproject.cli.net.DriversListCommand"/>
76 <completers>
77 <ref component-id="driverNameCompleter"/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070078 </completers>
79 </command>
80
81 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080082 <action class="org.onosproject.cli.net.DevicesListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -070083 </command>
84 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080085 <action class="org.onosproject.cli.net.DevicePortsListCommand"/>
tom0eb04ca2014-08-25 14:34:51 -070086 <completers>
tom6d2a43e2014-09-08 01:50:20 -070087 <ref component-id="deviceIdCompleter"/>
tom0eb04ca2014-08-25 14:34:51 -070088 </completers>
89 </command>
tom6d2a43e2014-09-08 01:50:20 -070090 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080091 <action class="org.onosproject.cli.net.DeviceRemoveCommand"/>
tomc290a122014-09-08 14:27:13 -070092 <completers>
93 <ref component-id="deviceIdCompleter"/>
94 </completers>
95 </command>
tom5f35f7c2014-09-08 18:38:19 -070096 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080097 <action class="org.onosproject.cli.net.DeviceRoleCommand"/>
tom5f35f7c2014-09-08 18:38:19 -070098 <completers>
99 <ref component-id="deviceIdCompleter"/>
toma6235a52014-10-15 13:25:39 -0700100 <ref component-id="nodeIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700101 <ref component-id="roleCompleter"/>
tom5f35f7c2014-09-08 18:38:19 -0700102 </completers>
103 </command>
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700104 <command>
105 <action class="org.onosproject.cli.net.AnnotateDeviceCommand"/>
106 <completers>
107 <ref component-id="deviceIdCompleter"/>
Thomas Vachuska8ceee942015-04-14 16:53:57 -0700108 </completers>
109 </command>
tomc290a122014-09-08 14:27:13 -0700110
111 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800112 <action class="org.onosproject.cli.net.LinksListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -0700113 <completers>
114 <ref component-id="deviceIdCompleter"/>
115 </completers>
116 </command>
tom13cb4852014-09-11 12:44:17 -0700117
118 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800119 <action class="org.onosproject.cli.net.TopologyCommand"/>
tom13cb4852014-09-11 12:44:17 -0700120 </command>
121 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800122 <action class="org.onosproject.cli.net.PathListCommand"/>
tom9eb57fb2014-09-11 19:42:38 -0700123 <completers>
124 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700125 <ref component-id="deviceIdCompleter"/>
tom9eb57fb2014-09-11 19:42:38 -0700126 </completers>
127 </command>
tomf5c9d922014-10-03 15:22:03 -0700128
tom9eb57fb2014-09-11 19:42:38 -0700129 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800130 <action class="org.onosproject.cli.net.IntentsListCommand"/>
tom0511a522014-10-04 12:06:02 -0700131 </command>
132 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800133 <action class="org.onosproject.cli.net.IntentRemoveCommand"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700134 <completers>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700135 <ref component-id="appIdWithIntentNameCompleter"/>
tom6db1f0a2014-10-07 09:12:29 -0700136 <ref component-id="intentIdCompleter"/>
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"/>
tom0511a522014-10-04 12:06:02 -0700144 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700145 <optional-completers>
Charles M.C. Chan2d89eca2015-04-29 21:32:17 +0800146 <entry key="-t" value-ref="ethTypeCompleter"/>
147 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
148 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
149 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
150 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700151 <entry key="-a" value-ref="allAppNameCompleter"/>
152 </optional-completers>
tomf5c9d922014-10-03 15:22:03 -0700153 </command>
Ray Milkeya058c732014-10-08 13:52:34 -0700154 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800155 <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/>
Ray Milkeya058c732014-10-08 13:52:34 -0700156 <completers>
157 <ref component-id="connectPointCompleter"/>
158 <ref component-id="connectPointCompleter"/>
159 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700160 <optional-completers>
161 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800162 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800163 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
164 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
165 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700166 <entry key="-a" value-ref="allAppNameCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700167 </optional-completers>
Ray Milkeya058c732014-10-08 13:52:34 -0700168 </command>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700169 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800170 <action class="org.onosproject.cli.net.AddOpticalIntentCommand"/>
Brian O'Connor5296b322014-10-23 14:59:05 -0700171 <completers>
172 <ref component-id="connectPointCompleter"/>
173 <ref component-id="connectPointCompleter"/>
Brian O'Connor5296b322014-10-23 14:59:05 -0700174 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700175 <optional-completers>
176 <entry key="-a" value-ref="allAppNameCompleter"/>
177 </optional-completers>
Brian O'Connor5296b322014-10-23 14:59:05 -0700178 </command>
179 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800180 <action class="org.onosproject.cli.net.GetStatistics"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800181 <completers>
182 <ref component-id="connectPointCompleter"/>
183 </completers>
alshabib23a8d7c2014-10-22 21:53:39 -0700184 </command>
185 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800186 <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/>
Ray Milkey0742ec92014-10-13 08:39:55 -0700187 <completers>
188 <ref component-id="connectPointCompleter"/>
189 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700190 <optional-completers>
191 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800192 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800193 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
194 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
195 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700196 <entry key="-a" value-ref="allAppNameCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700197 </optional-completers>
Ray Milkey0742ec92014-10-13 08:39:55 -0700198 </command>
199 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800200 <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100201 <completers>
202 <ref component-id="connectPointCompleter"/>
203 </completers>
204 <optional-completers>
205 <entry key="-t" value-ref="ethTypeCompleter"/>
Pavlin Radoslavov70761df2015-03-09 11:05:49 -0700206 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800207 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
208 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
209 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700210 <entry key="-a" value-ref="allAppNameCompleter"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100211 </optional-completers>
212 </command>
213 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800214 <action class="org.onosproject.cli.net.IntentPushTestCommand"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700215 <completers>
216 <ref component-id="connectPointCompleter"/>
217 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700218 <ref component-id="nullCompleter"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700219 </completers>
220 </command>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700221 <command>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800222 <action class="org.onosproject.cli.net.IntentCycleCommand"/>
223 <completers>
224 <ref component-id="connectPointCompleter"/>
225 <ref component-id="connectPointCompleter"/>
226 <ref component-id="nullCompleter"/>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800227 </completers>
228 </command>
229 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800230 <action class="org.onosproject.cli.net.RandomIntentCommand"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800231 <completers>
232 <ref component-id="nullCompleter"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800233 </completers>
234 </command>
235 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800236 <action class="org.onosproject.cli.net.ResourceAllocationsCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700237 <completers>
238 <ref component-id="connectPointCompleter"/>
239 <ref component-id="connectPointCompleter"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700240 </completers>
241 </command>
242 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800243 <action class="org.onosproject.cli.net.ResourceAvailableCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700244 <completers>
245 <ref component-id="connectPointCompleter"/>
246 <ref component-id="connectPointCompleter"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700247 </completers>
248 </command>
Brian O'Connor66630c82014-10-02 21:08:19 -0700249 <command>
Ayaka Koshibe4699b292015-04-28 14:33:10 -0700250 <action class="org.onosproject.cli.net.LinkResourceTestCommand"/>
251 <completers>
252 <ref component-id="connectPointCompleter"/>
253 <ref component-id="connectPointCompleter"/>
254 <null/>
255 </completers>
256 </command>
257 <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"/>
276 </completers>
277 </command>
278 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800279 <action class="org.onosproject.cli.net.ClusterLinksCommand"/>
tom13cb4852014-09-11 12:44:17 -0700280 <completers>
281 <ref component-id="clusterIdCompleter"/>
282 </completers>
283 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700284
285 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800286 <action class="org.onosproject.cli.net.HostsListCommand"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700287 </command>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700288 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800289 <action class="org.onosproject.cli.net.HostRemoveCommand"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800290 <completers>
291 <ref component-id="hostIdCompleter"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800292 </completers>
293 </command>
294 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800295 <action class="org.onosproject.cli.net.AddressBindingsListCommand"/>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700296 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700297
tom89b63c52014-09-16 09:19:51 -0700298 <command>
Jonathan Hart32600692015-03-09 10:38:40 -0700299 <action class="org.onosproject.cli.net.GroupsListCommand"/>
300 </command>
301
302 <command>
sangho538108b2015-04-08 14:29:20 -0700303 <action class="org.onosproject.cli.net.DevicePortStatsCommand"/>
304 </command>
305
306 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800307 <action class="org.onosproject.cli.net.FlowsListCommand"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700308 <completers>
alshabib144a2942014-09-25 18:44:02 -0700309 <ref component-id="flowRuleStatusCompleter"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700310 <ref component-id="deviceIdCompleter"/>
311 </completers>
tom1380eee2014-09-24 09:22:02 -0700312 </command>
313
314 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800315 <action class="org.onosproject.cli.net.AddFlowsCommand"/>
alshabib5afcbd72014-10-30 16:28:40 +0100316 </command>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800317 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800318 <action class="org.onosproject.cli.net.LeaderCommand"/>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800319 </command>
alshabib5afcbd72014-10-30 16:28:40 +0100320
321 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800322 <action class="org.onosproject.cli.net.WipeOutCommand"/>
tom89b63c52014-09-16 09:19:51 -0700323 </command>
Michele Santuari4b6019e2014-12-19 11:31:45 +0100324 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800325 <action class="org.onosproject.cli.net.AddMplsIntent"/>
326 <completers>
327 <ref component-id="connectPointCompleter"/>
Ray Milkey2a6e4452015-04-08 09:59:20 -0700328 <ref component-id="connectPointCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800329 </completers>
Ray Milkey95c50872015-04-14 14:32:31 -0700330 <optional-completers>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800331 <entry key="-t" value-ref="ethTypeCompleter"/>
332 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
333 <entry key="--icmp6Type" value-ref="Icmp6TypeCompleter"/>
334 <entry key="--icmp6Code" value-ref="Icmp6CodeCompleter"/>
335 <entry key="--extHdr" value-ref="ExtHeaderCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700336 <entry key="-a" value-ref="allAppNameCompleter"/>
337 </optional-completers>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800338 </command>
jccde3e92e2015-03-28 01:40:44 -0700339
340 <command>
samuel7a5691a2015-05-23 00:36:32 +0800341 <action class="org.onosproject.cli.net.GlobalLabelCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700342 </command>
343 <command>
samuel7a5691a2015-05-23 00:36:32 +0800344 <action class="org.onosproject.cli.net.LabelResourceCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700345 </command>
346 <command>
samuel7a5691a2015-05-23 00:36:32 +0800347 <action class="org.onosproject.cli.net.GlobalLabelPoolCreateCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700348 </command>
349 <command>
samuel7a5691a2015-05-23 00:36:32 +0800350 <action class="org.onosproject.cli.net.LabelPoolCreateCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700351 </command>
352 <command>
samuel7a5691a2015-05-23 00:36:32 +0800353 <action class="org.onosproject.cli.net.GlobalLabelPoolDestoryCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700354 </command>
355 <command>
samuel7a5691a2015-05-23 00:36:32 +0800356 <action class="org.onosproject.cli.net.LabelPoolDestroyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700357 </command>
358 <command>
samuel7a5691a2015-05-23 00:36:32 +0800359 <action class="org.onosproject.cli.net.GlobalLabelReleaseCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700360 </command>
361 <command>
samuel7a5691a2015-05-23 00:36:32 +0800362 <action class="org.onosproject.cli.net.LabelReleaseCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700363 </command>
364 <command>
samuel7a5691a2015-05-23 00:36:32 +0800365 <action class="org.onosproject.cli.net.GlobalLabelApplyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700366 </command>
367 <command>
samuel7a5691a2015-05-23 00:36:32 +0800368 <action class="org.onosproject.cli.net.LabelApplyCommand"/>
jccde3e92e2015-03-28 01:40:44 -0700369 </command>
jccd8697232015-05-05 14:42:23 +0800370 <!-- tunnel commands -->
371 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700372 <action class="org.onosproject.cli.net.TunnelBorrowCommand"/>
jccd8697232015-05-05 14:42:23 +0800373 </command>
374 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700375 <action class="org.onosproject.cli.net.TunnelReturnCommand"/>
jccd8697232015-05-05 14:42:23 +0800376 </command>
377 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700378 <action class="org.onosproject.cli.net.TunnelQueryCommand"/>
jccd8697232015-05-05 14:42:23 +0800379 </command>
380 <command>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -0700381 <action class="org.onosproject.cli.net.TunnelQuerySubscriptionCommand"/>
jccd8697232015-05-05 14:42:23 +0800382 </command>
cheng fan7716ec92015-05-31 01:53:19 +0800383 <command>
384 <action class="org.onosproject.cli.net.TunnelCreateCommand"/>
385 </command>
386 <command>
387 <action class="org.onosproject.cli.net.TunnelRemoveCommand"/>
388 </command>
389 <command>
390 <action class="org.onosproject.cli.net.TunnelUpdateCommand"/>
391 </command>
tom0eb04ca2014-08-25 14:34:51 -0700392 </command-bundle>
393
Changhoon Yoon23dee8f2015-05-18 22:19:49 +0900394 <bean id="permAppNameCompleter" class="org.onosproject.cli.security.PermissionApplicationNameCompleter"/>
395 <bean id="permCommandCompleter" class="org.onosproject.cli.security.PermissionCommandCompleter"/>
396 <bean id="permNameCompleter" class="org.onosproject.cli.security.PermissionNameCompleter"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800397 <bean id="appCommandCompleter" class="org.onosproject.cli.app.ApplicationCommandCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -0800398 <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/>
Ray Milkey95c50872015-04-14 14:32:31 -0700399 <bean id="allAppNameCompleter" class="org.onosproject.cli.app.AllApplicationNamesCompleter"/>
Ray Milkeyd088e8a2015-04-07 14:56:57 -0700400 <bean id="appIdWithIntentNameCompleter" class="org.onosproject.cli.app.ApplicationIdWithIntentNameCompleter"/>
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700401 <bean id="cfgCommandCompleter" class="org.onosproject.cli.cfg.ComponentConfigCommandCompleter"/>
402 <bean id="componentNameCompleter" class="org.onosproject.cli.cfg.ComponentNameCompleter"/>
Ray Milkeyfb6655e2015-04-10 10:50:54 -0700403 <bean id="componentPropertyNameCompleter" class="org.onosproject.cli.cfg.ComponentPropertyNameCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800404 <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/>
405 <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
406 <bean id="clusterIdCompleter" class="org.onosproject.cli.net.ClusterIdCompleter"/>
407 <bean id="roleCompleter" class="org.onosproject.cli.net.RoleCompleter"/>
408 <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/>
409 <bean id="intentIdCompleter" class="org.onosproject.cli.net.IntentIdCompleter"/>
410 <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/>
411 <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700412 <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800413 <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/>
414 <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/>
Thomas Vachuska5c2f8132015-04-08 23:09:08 -0700415 <bean id="driverNameCompleter" class="org.onosproject.cli.net.DriverNameCompleter"/>
Charles M.C. Chan2184de12015-04-26 02:24:53 +0800416 <bean id="Icmp6TypeCompleter" class="org.onosproject.cli.net.Icmp6TypeCompleter"/>
417 <bean id="Icmp6CodeCompleter" class="org.onosproject.cli.net.Icmp6CodeCompleter"/>
418 <bean id="ExtHeaderCompleter" class="org.onosproject.cli.net.ExtHeaderCompleter"/>
tom6d2a43e2014-09-08 01:50:20 -0700419
Thomas Vachuskac40d4632015-04-09 16:55:03 -0700420 <bean id="startStopCompleter" class="org.onosproject.cli.StartStopCompleter"/>
421 <bean id="upDownCompleter" class="org.onosproject.cli.UpDownCompleter"/>
422
tom0eb04ca2014-08-25 14:34:51 -0700423</blueprint>