blob: ef9fd7ed60cc860e3b1afa2f8c224e354cebe59f [file] [log] [blame]
breezestarsdf95f9f2016-09-16 15:35:25 -07001<!--
Luca Pretedce16f82016-11-22 13:11:56 -08002 ~ Copyright 2014-present Open Networking Laboratory
breezestarsdf95f9f2016-09-16 15:35:25 -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
Luca Pretedce16f82016-11-22 13:11:56 -080014 ~ limitations under the License.
breezestarsdf95f9f2016-09-16 15:35:25 -070015 -->
breezestarsdf95f9f2016-09-16 15:35:25 -070016<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
17
Luca Pretedce16f82016-11-22 13:11:56 -080018 <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>
breezestarsdf95f9f2016-09-16 15:35:25 -070029
Luca Pretedce16f82016-11-22 13:11:56 -080030 <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 Prete092e8952016-10-26 16:25:56 +020034</blueprint>