Jonathan Hart | e533a42 | 2015-10-20 17:31:24 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | d4fbd35 | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2016-present Open Networking Laboratory |
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 | <completers> |
| 36 | <ref component-id="deviceIdCompleter"/> |
| 37 | <null/> |
| 38 | </completers> |
| 39 | </command> |
Jonathan Hart | fd6c1b3 | 2016-03-08 14:09:09 -0800 | [diff] [blame] | 40 | <command> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 41 | <action class="org.opencord.olt.cli.ShowSubscribersCommand"/> |
Jonathan Hart | fd6c1b3 | 2016-03-08 14:09:09 -0800 | [diff] [blame] | 42 | </command> |
Jonathan Hart | e533a42 | 2015-10-20 17:31:24 -0700 | [diff] [blame] | 43 | </command-bundle> |
| 44 | |
| 45 | <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/> |
| 46 | </blueprint> |