blob: f2a839199a5e5840d4400dad11828984701b503a [file] [log] [blame]
Akihiro Yamanouchid4912842016-07-01 10:38:46 +09001<!--
Brian O'Connor0a4e6742016-09-15 23:03:10 -07002 ~ Copyright 2016-present Open Networking Laboratory
Akihiro Yamanouchid4912842016-07-01 10:38:46 +09003 ~
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 <!--volt commands -->
20 <command>
21 <action class="org.onosproject.drivers.fujitsu.cli.VoltGetPonLinksCommand"/>
22 <completers>
23 <ref component-id="deviceIdCompleter"/>
24 </completers>
25 </command>
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090026 <command>
27 <action class="org.onosproject.drivers.fujitsu.cli.VoltSetPonLinkCommand"/>
28 <completers>
29 <ref component-id="deviceIdCompleter"/>
30 </completers>
31 </command>
Akihiro Yamanouchi8d3a9d32016-07-12 11:41:44 +090032 <command>
33 <action class="org.onosproject.drivers.fujitsu.cli.VoltGetOnusCommand"/>
34 <completers>
35 <ref component-id="deviceIdCompleter"/>
36 </completers>
37 </command>
38 <command>
39 <action class="org.onosproject.drivers.fujitsu.cli.VoltSetOnuCommand"/>
40 <completers>
41 <ref component-id="deviceIdCompleter"/>
42 </completers>
43 </command>
44 <command>
45 <action class="org.onosproject.drivers.fujitsu.cli.VoltGetOnuStatsCommand"/>
46 <completers>
47 <ref component-id="deviceIdCompleter"/>
48 </completers>
49 </command>
50 <command>
51 <action class="org.onosproject.drivers.fujitsu.cli.VoltEthLoopbackCommand"/>
52 <completers>
53 <ref component-id="deviceIdCompleter"/>
54 </completers>
55 </command>
56 <command>
57 <action class="org.onosproject.drivers.fujitsu.cli.VoltRebootOnuCommand"/>
58 <completers>
59 <ref component-id="deviceIdCompleter"/>
60 </completers>
61 </command>
Akihiro Yamanouchi45122222016-07-15 13:13:11 +090062 <command>
63 <action class="org.onosproject.drivers.fujitsu.cli.VoltGetAlertFilterCommand"/>
64 <completers>
65 <ref component-id="deviceIdCompleter"/>
66 </completers>
67 </command>
68 <command>
69 <action class="org.onosproject.drivers.fujitsu.cli.VoltSetAlertFilterCommand"/>
70 <completers>
71 <ref component-id="deviceIdCompleter"/>
72 </completers>
73 </command>
74 <command>
75 <action class="org.onosproject.drivers.fujitsu.cli.VoltSubscribeCommand"/>
76 <completers>
77 <ref component-id="deviceIdCompleter"/>
78 </completers>
79 </command>
Akihiro Yamanouchi38a38672016-07-20 20:05:57 +090080 <command>
81 <action class="org.onosproject.drivers.fujitsu.cli.VoltOndemandFwdlCommand"/>
82 <completers>
83 <ref component-id="deviceIdCompleter"/>
84 </completers>
85 </command>
Akihiro Yamanouchi237ca362016-07-29 17:34:38 +090086 <command>
87 <action class="org.onosproject.drivers.fujitsu.cli.VoltGetAllCommand"/>
88 <completers>
89 <ref component-id="deviceIdCompleter"/>
90 </completers>
91 </command>
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090092 </command-bundle>
93
94 <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
Akihiro Yamanouchid4912842016-07-01 10:38:46 +090095</blueprint>