breezestars | df95f9f | 2016-09-16 15:35:25 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | ~ Copyright 2014-present Open Networking Foundation |
breezestars | df95f9f | 2016-09-16 15:35:25 -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 |
Luca Prete | dce16f8 | 2016-11-22 13:11:56 -0800 | [diff] [blame] | 14 | ~ limitations under the License. |
breezestars | df95f9f | 2016-09-16 15:35:25 -0700 | [diff] [blame] | 15 | --> |
breezestars | df95f9f | 2016-09-16 15:35:25 -0700 | [diff] [blame] | 16 | <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"> |
| 17 | |
Luca Prete | dce16f8 | 2016-11-22 13:11:56 -0800 | [diff] [blame] | 18 | <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0"> |
| 19 | <command> |
| 20 | <action class="org.onosproject.vpls.cli.VplsCommand"/> |
| 21 | <completers> |
| 22 | <ref component-id="vplsCommandCompleter"/> |
| 23 | <ref component-id="vplsNameCompleter"/> |
| 24 | <ref component-id="vplsOptArgCompleter"/> |
| 25 | <ref component-id="nullCompleter"/> |
| 26 | </completers> |
| 27 | </command> |
| 28 | </command-bundle> |
breezestars | df95f9f | 2016-09-16 15:35:25 -0700 | [diff] [blame] | 29 | |
Luca Prete | dce16f8 | 2016-11-22 13:11:56 -0800 | [diff] [blame] | 30 | <bean id="vplsCommandCompleter" class="org.onosproject.vpls.cli.completer.VplsCommandCompleter"/> |
| 31 | <bean id="vplsNameCompleter" class="org.onosproject.vpls.cli.completer.VplsNameCompleter"/> |
| 32 | <bean id="vplsOptArgCompleter" class="org.onosproject.vpls.cli.completer.VplsOptArgCompleter"/> |
| 33 | <bean id="nullCompleter" class="org.apache.karaf.shell.console.completer.NullCompleter"/> |
Luca Prete | 092e895 | 2016-10-26 16:25:56 +0200 | [diff] [blame] | 34 | </blueprint> |