blob: 265dcd0a18bbac8d0c381a539e178044a1b2babd [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"/>
32 <null/>
33 </completers>
34 </command>
35
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080036 <command>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070037 <action class="org.onosproject.cli.cfg.ComponentConfigCommand"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080038 <completers>
Thomas Vachuska6d697f12015-03-08 20:59:50 -070039 <ref component-id="cfgCommandCompleter"/>
40 <ref component-id="componentNameCompleter"/>
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>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080052 <!--
tome4729872014-09-23 00:37:37 -070053 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080054 <action class="org.onosproject.cli.NodeAddCommand"/>
tom9710fb42014-09-29 11:35:28 -070055 </command>
56 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -080057 <action class="org.onosproject.cli.NodeRemoveCommand"/>
tom9710fb42014-09-29 11:35:28 -070058 </command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -080059 -->
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>
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>
tomc290a122014-09-08 14:27:13 -0700100
101 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800102 <action class="org.onosproject.cli.net.LinksListCommand"/>
tom6d2a43e2014-09-08 01:50:20 -0700103 <completers>
104 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700105 <null/>
tom6d2a43e2014-09-08 01:50:20 -0700106 </completers>
107 </command>
tom13cb4852014-09-11 12:44:17 -0700108
109 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800110 <action class="org.onosproject.cli.net.TopologyCommand"/>
tom13cb4852014-09-11 12:44:17 -0700111 </command>
112 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800113 <action class="org.onosproject.cli.net.PathListCommand"/>
tom9eb57fb2014-09-11 19:42:38 -0700114 <completers>
115 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700116 <ref component-id="deviceIdCompleter"/>
117 <null/>
tom9eb57fb2014-09-11 19:42:38 -0700118 </completers>
119 </command>
tomf5c9d922014-10-03 15:22:03 -0700120
tom9eb57fb2014-09-11 19:42:38 -0700121 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800122 <action class="org.onosproject.cli.net.IntentsListCommand"/>
tom0511a522014-10-04 12:06:02 -0700123 </command>
124 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800125 <action class="org.onosproject.cli.net.IntentRemoveCommand"/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700126 <completers>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800127 <ref component-id="appIdNameCompleter"/>
tom6db1f0a2014-10-07 09:12:29 -0700128 <ref component-id="intentIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700129 <null/>
Brian O'Connor66630c82014-10-02 21:08:19 -0700130 </completers>
131 </command>
tomf5c9d922014-10-03 15:22:03 -0700132 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800133 <action class="org.onosproject.cli.net.AddHostToHostIntentCommand"/>
tom0511a522014-10-04 12:06:02 -0700134 <completers>
tom6db1f0a2014-10-07 09:12:29 -0700135 <ref component-id="hostIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700136 <ref component-id="hostIdCompleter"/>
137 <null/>
tom0511a522014-10-04 12:06:02 -0700138 </completers>
tomf5c9d922014-10-03 15:22:03 -0700139 </command>
Ray Milkeya058c732014-10-08 13:52:34 -0700140 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800141 <action class="org.onosproject.cli.net.AddPointToPointIntentCommand"/>
Ray Milkeya058c732014-10-08 13:52:34 -0700142 <completers>
143 <ref component-id="connectPointCompleter"/>
144 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700145 <null/>
Ray Milkeya058c732014-10-08 13:52:34 -0700146 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700147 <optional-completers>
148 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800149 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700150 </optional-completers>
Ray Milkeya058c732014-10-08 13:52:34 -0700151 </command>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700152 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800153 <action class="org.onosproject.cli.net.AddOpticalIntentCommand"/>
Brian O'Connor5296b322014-10-23 14:59:05 -0700154 <completers>
155 <ref component-id="connectPointCompleter"/>
156 <ref component-id="connectPointCompleter"/>
157 <null/>
158 </completers>
159 </command>
160 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800161 <action class="org.onosproject.cli.net.GetStatistics"/>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800162 <completers>
163 <ref component-id="connectPointCompleter"/>
164 </completers>
alshabib23a8d7c2014-10-22 21:53:39 -0700165 </command>
166 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800167 <action class="org.onosproject.cli.net.AddMultiPointToSinglePointIntentCommand"/>
Ray Milkey0742ec92014-10-13 08:39:55 -0700168 <completers>
169 <ref component-id="connectPointCompleter"/>
170 </completers>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700171 <optional-completers>
172 <entry key="-t" value-ref="ethTypeCompleter"/>
Jonathan Hart6e948282014-11-17 22:50:42 -0800173 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Ray Milkey9fdf1ea2014-10-21 09:48:02 -0700174 </optional-completers>
Ray Milkey0742ec92014-10-13 08:39:55 -0700175 </command>
176 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800177 <action class="org.onosproject.cli.net.AddSinglePointToMultiPointIntentCommand"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100178 <completers>
179 <ref component-id="connectPointCompleter"/>
180 </completers>
181 <optional-completers>
182 <entry key="-t" value-ref="ethTypeCompleter"/>
Pavlin Radoslavov70761df2015-03-09 11:05:49 -0700183 <entry key="--ipProto" value-ref="ipProtocolCompleter"/>
Michele Santuari4a338072014-11-05 18:38:55 +0100184 </optional-completers>
185 </command>
186 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800187 <action class="org.onosproject.cli.net.IntentPushTestCommand"/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700188 <completers>
189 <ref component-id="connectPointCompleter"/>
190 <ref component-id="connectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700191 <ref component-id="nullCompleter"/>
192 <null/>
Brian O'Connor1aa99eb2014-10-10 16:18:58 -0700193 </completers>
194 </command>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700195 <command>
Brian O'Connor66cfbfa2015-02-17 18:17:32 -0800196 <action class="org.onosproject.cli.net.IntentCycleCommand"/>
197 <completers>
198 <ref component-id="connectPointCompleter"/>
199 <ref component-id="connectPointCompleter"/>
200 <ref component-id="nullCompleter"/>
201 <null/>
202 </completers>
203 </command>
204 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800205 <action class="org.onosproject.cli.net.RandomIntentCommand"/>
Brian O'Connor6741a5f2014-11-19 20:40:11 -0800206 <completers>
207 <ref component-id="nullCompleter"/>
208 <null/>
209 </completers>
210 </command>
211 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800212 <action class="org.onosproject.cli.net.ResourceAllocationsCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700213 <completers>
214 <ref component-id="connectPointCompleter"/>
215 <ref component-id="connectPointCompleter"/>
216 <null/>
217 </completers>
218 </command>
219 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800220 <action class="org.onosproject.cli.net.ResourceAvailableCommand"/>
Brian O'Connorfe0f4b12014-10-30 21:19:02 -0700221 <completers>
222 <ref component-id="connectPointCompleter"/>
223 <ref component-id="connectPointCompleter"/>
224 <null/>
225 </completers>
226 </command>
Brian O'Connor66630c82014-10-02 21:08:19 -0700227 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800228 <action class="org.onosproject.cli.net.ClustersListCommand"/>
tom13cb4852014-09-11 12:44:17 -0700229 </command>
230 <command>
Jonathan Hart054da972015-02-18 17:30:28 -0800231 <action class="org.onosproject.cli.net.PartitionsListCommand"/>
232 </command>
233 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800234 <action class="org.onosproject.cli.net.ClusterDevicesCommand"/>
tom13cb4852014-09-11 12:44:17 -0700235 <completers>
236 <ref component-id="clusterIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700237 <null/>
tom13cb4852014-09-11 12:44:17 -0700238 </completers>
239 </command>
240 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800241 <action class="org.onosproject.cli.net.ClusterLinksCommand"/>
tom13cb4852014-09-11 12:44:17 -0700242 <completers>
243 <ref component-id="clusterIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700244 <null/>
tom13cb4852014-09-11 12:44:17 -0700245 </completers>
246 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700247
248 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800249 <action class="org.onosproject.cli.net.HostsListCommand"/>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700250 </command>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700251 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800252 <action class="org.onosproject.cli.net.HostRemoveCommand"/>
Thomas Vachuska33601602014-11-19 03:32:15 -0800253 <completers>
254 <ref component-id="hostIdCompleter"/>
255 <null/>
256 </completers>
257 </command>
258 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800259 <action class="org.onosproject.cli.net.AddressBindingsListCommand"/>
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700260 </command>
Ayaka Koshibe43530be2014-09-15 11:14:52 -0700261
tom89b63c52014-09-16 09:19:51 -0700262 <command>
Jonathan Hart32600692015-03-09 10:38:40 -0700263 <action class="org.onosproject.cli.net.GroupsListCommand"/>
264 </command>
265
266 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800267 <action class="org.onosproject.cli.net.FlowsListCommand"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700268 <completers>
alshabib144a2942014-09-25 18:44:02 -0700269 <ref component-id="flowRuleStatusCompleter"/>
alshabib99b8fdc2014-09-25 14:30:22 -0700270 <ref component-id="deviceIdCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700271 <null/>
alshabib99b8fdc2014-09-25 14:30:22 -0700272 </completers>
tom1380eee2014-09-24 09:22:02 -0700273 </command>
274
275 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800276 <action class="org.onosproject.cli.net.AddFlowsCommand"/>
alshabib5afcbd72014-10-30 16:28:40 +0100277 </command>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800278 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800279 <action class="org.onosproject.cli.net.LeaderCommand"/>
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800280 </command>
alshabib5afcbd72014-10-30 16:28:40 +0100281
282 <command>
Brian O'Connorabafb502014-12-02 22:26:20 -0800283 <action class="org.onosproject.cli.net.WipeOutCommand"/>
tom89b63c52014-09-16 09:19:51 -0700284 </command>
Michele Santuari4b6019e2014-12-19 11:31:45 +0100285 <command>
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800286 <action class="org.onosproject.cli.net.AddMplsIntent"/>
287 <completers>
288 <ref component-id="connectPointCompleter"/>
289 </completers>
290 </command>
tom0eb04ca2014-08-25 14:34:51 -0700291 </command-bundle>
292
Thomas Vachuska1dcb0482015-02-18 18:21:28 -0800293 <bean id="appCommandCompleter" class="org.onosproject.cli.app.ApplicationCommandCompleter"/>
Thomas Vachuska90b453f2015-01-30 18:57:14 -0800294 <bean id="appNameCompleter" class="org.onosproject.cli.app.ApplicationNameCompleter"/>
Ray Milkey02479862015-02-17 17:02:19 -0800295 <bean id="appIdNameCompleter" class="org.onosproject.cli.app.ApplicationIdNameCompleter"/>
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700296 <bean id="cfgCommandCompleter" class="org.onosproject.cli.cfg.ComponentConfigCommandCompleter"/>
297 <bean id="componentNameCompleter" class="org.onosproject.cli.cfg.ComponentNameCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800298 <bean id="nodeIdCompleter" class="org.onosproject.cli.NodeIdCompleter"/>
299 <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
300 <bean id="clusterIdCompleter" class="org.onosproject.cli.net.ClusterIdCompleter"/>
301 <bean id="roleCompleter" class="org.onosproject.cli.net.RoleCompleter"/>
302 <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/>
303 <bean id="intentIdCompleter" class="org.onosproject.cli.net.IntentIdCompleter"/>
304 <bean id="flowRuleStatusCompleter" class="org.onosproject.cli.net.FlowRuleStatusCompleter"/>
305 <bean id="connectPointCompleter" class="org.onosproject.cli.net.ConnectPointCompleter"/>
Ray Milkey9bbc9442014-10-13 10:27:45 -0700306 <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/>
Brian O'Connorabafb502014-12-02 22:26:20 -0800307 <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/>
308 <bean id="ipProtocolCompleter" class="org.onosproject.cli.net.IpProtocolCompleter"/>
tom6d2a43e2014-09-08 01:50:20 -0700309
tom0eb04ca2014-08-25 14:34:51 -0700310</blueprint>