Jonathan Hart | e533a42 | 2015-10-20 17:31:24 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | d6a135a | 2017-08-03 22:46:05 -0700 | [diff] [blame] | 2 | ~ Copyright 2016-present Open Networking Foundation |
Jonathan Hart | e533a42 | 2015-10-20 17:31:24 -0700 | [diff] [blame] | 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> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 20 | <action class="org.opencord.olt.cli.SubscriberAddCommand"/> |
Jonathan Hart | e533a42 | 2015-10-20 17:31:24 -0700 | [diff] [blame] | 21 | <completers> |
| 22 | <ref component-id="deviceIdCompleter"/> |
| 23 | <null/> |
| 24 | </completers> |
| 25 | </command> |
alshabib | faadd2e | 2016-02-18 17:30:59 -0800 | [diff] [blame] | 26 | <command> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 27 | <action class="org.opencord.olt.cli.SubscriberRemoveCommand"/> |
alshabib | faadd2e | 2016-02-18 17:30:59 -0800 | [diff] [blame] | 28 | <completers> |
| 29 | <ref component-id="deviceIdCompleter"/> |
| 30 | <null/> |
| 31 | </completers> |
| 32 | </command> |
alshabib | e055967 | 2016-02-21 14:49:51 -0800 | [diff] [blame] | 33 | <command> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 34 | <action class="org.opencord.olt.cli.ShowOltCommand"/> |
alshabib | e055967 | 2016-02-21 14:49:51 -0800 | [diff] [blame] | 35 | </command> |
Jonathan Hart | fd6c1b3 | 2016-03-08 14:09:09 -0800 | [diff] [blame] | 36 | <command> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 37 | <action class="org.opencord.olt.cli.ShowSubscribersCommand"/> |
Jonathan Hart | fd6c1b3 | 2016-03-08 14:09:09 -0800 | [diff] [blame] | 38 | </command> |
Saurav Das | 82b8e6d | 2018-10-04 15:25:12 -0700 | [diff] [blame] | 39 | <command> |
| 40 | <action class="org.opencord.olt.cli.ShowProgrammedSubscribersCommand"/> |
| 41 | </command> |
Gamze Abaka | 33feef5 | 2019-02-27 08:16:47 +0000 | [diff] [blame^] | 42 | <command> |
| 43 | <action class="org.opencord.olt.cli.ShowProgrammedMetersCommand"/> |
| 44 | </command> |
| 45 | <command> |
| 46 | <action class="org.opencord.olt.cli.ShowBpMeterMappingsCommand"/> |
| 47 | </command> |
Jonathan Hart | e533a42 | 2015-10-20 17:31:24 -0700 | [diff] [blame] | 48 | </command-bundle> |
| 49 | |
| 50 | <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/> |
| 51 | </blueprint> |