blob: 48df042d580a01aaac969d0d23cd83b35b067e5a [file] [log] [blame]
Andrea Campanella01e886e2017-12-15 15:27:31 +01001<!--
2 ~ Copyright 2017-present Open Networking Foundation
3 ~
4 ~ 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
7 ~
8 ~ 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.
15 -->
16<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>
20 <action class="org.onosproject.t3.cli.TroubleshootTraceCommand"/>
21 </command>
Andrea Campanellaaf34b7c2018-02-08 17:10:11 +010022 <command>
23 <action class="org.onosproject.t3.cli.TroubleshootSimpleTraceCommand"/>
24 <completers>
25 <ref component-id="hostIdCompleter"/>
26 </completers>
27 <optional-completers>
28 <entry key="-et" value-ref="ethTypeCompleter"/>
29 </optional-completers>
30 </command>
Andrea Campanella6be5c872018-02-21 14:28:20 +010031 <command>
Andrea Campanella41de8062018-02-28 16:43:16 +010032 <action class="org.onosproject.t3.cli.TroubleshootPingAllCommand"/>
Andrea Campanella6be5c872018-02-21 14:28:20 +010033 <optional-completers>
34 <entry key="-et" value-ref="ethTypeCompleter"/>
35 </optional-completers>
36 </command>
Andrea Campanellafa3ec192018-04-06 16:30:18 +020037 <command>
38 <action class="org.onosproject.t3.cli.TroubleshootMcastCommand"/>
39 </command>
Andrea Campanella01e886e2017-12-15 15:27:31 +010040 </command-bundle>
41
Andrea Campanellaaf34b7c2018-02-08 17:10:11 +010042 <bean id="hostIdCompleter" class="org.onosproject.cli.net.HostIdCompleter"/>
43 <bean id="ethTypeCompleter" class="org.onosproject.cli.net.EthTypeCompleter"/>
44
Andrea Campanella01e886e2017-12-15 15:27:31 +010045</blueprint>
46
47