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