blob: f871bc973fd2bf807c0a9ac8e18f27213e980c82 [file] [log] [blame]
Jonathan Harte533a422015-10-20 17:31:24 -07001<!--
Brian O'Connord6a135a2017-08-03 22:46:05 -07002 ~ Copyright 2016-present Open Networking Foundation
Jonathan Harte533a422015-10-20 17:31:24 -07003 ~
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>
alshabib36a4d732016-06-01 16:03:59 -070020 <action class="org.opencord.olt.cli.SubscriberAddCommand"/>
Jonathan Harte533a422015-10-20 17:31:24 -070021 <completers>
22 <ref component-id="deviceIdCompleter"/>
23 <null/>
24 </completers>
25 </command>
alshabibfaadd2e2016-02-18 17:30:59 -080026 <command>
alshabib36a4d732016-06-01 16:03:59 -070027 <action class="org.opencord.olt.cli.SubscriberRemoveCommand"/>
alshabibfaadd2e2016-02-18 17:30:59 -080028 <completers>
29 <ref component-id="deviceIdCompleter"/>
30 <null/>
31 </completers>
32 </command>
alshabibe0559672016-02-21 14:49:51 -080033 <command>
alshabib36a4d732016-06-01 16:03:59 -070034 <action class="org.opencord.olt.cli.ShowOltCommand"/>
alshabibe0559672016-02-21 14:49:51 -080035 </command>
Jonathan Hartfd6c1b32016-03-08 14:09:09 -080036 <command>
alshabib36a4d732016-06-01 16:03:59 -070037 <action class="org.opencord.olt.cli.ShowSubscribersCommand"/>
Jonathan Hartfd6c1b32016-03-08 14:09:09 -080038 </command>
Saurav Das82b8e6d2018-10-04 15:25:12 -070039 <command>
40 <action class="org.opencord.olt.cli.ShowProgrammedSubscribersCommand"/>
41 </command>
Gamze Abaka33feef52019-02-27 08:16:47 +000042 <command>
43 <action class="org.opencord.olt.cli.ShowProgrammedMetersCommand"/>
44 </command>
45 <command>
46 <action class="org.opencord.olt.cli.ShowBpMeterMappingsCommand"/>
47 </command>
Jonathan Harte533a422015-10-20 17:31:24 -070048 </command-bundle>
49
50 <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
51</blueprint>