Imported vpnservice as a subtree
[netvirt.git] / vpnservice / neutronvpn / neutronvpn-shell / src / main / resources / OSGI-INF / blueprint / blueprint.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9
10 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
11
12     <reference id="neutronVpnManagerRef"
13                interface="org.opendaylight.vpnservice.neutronvpn.interfaces.INeutronVpnManager"
14                availability="optional"/>
15     <reference id="rpcRegistryRef" interface="org.opendaylight.controller.sal.binding.api.RpcProviderRegistry"
16                availability="optional"/>
17     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
18
19         <command>
20             <action class="org.opendaylight.vpnservice.neutronvpn.shell.ConfigureL3VpnCommand">
21                 <property name="neutronVpnManager" ref="neutronVpnManagerRef"/>
22                 <property name="rpcRegistry" ref="rpcRegistryRef"/>
23             </action>
24         </command>
25
26         <command>
27             <action class="org.opendaylight.vpnservice.neutronvpn.shell.ShowVpnConfigCommand">
28                 <property name="neutronVpnManager" ref="neutronVpnManagerRef"/>
29             </action>
30         </command>
31
32         <command>
33             <action class="org.opendaylight.vpnservice.neutronvpn.shell.ShowNeutronPortsCommand">
34                 <property name="neutronVpnManager" ref="neutronVpnManagerRef"/>
35             </action>
36         </command>
37
38     </command-bundle>
39
40 </blueprint>