2a2eb9798113784f17ba402fc92004196c0b2da4
[unimgr.git] / cli / src / main / resources / OSGI-INF / blueprint / commands.xml
1 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
2
3     <reference id="vcpeConsoleProvider" availability="mandatory"
4         activation="eager" interface="org.opendaylight.vcpe.api.IVcpeConsoleProvider">
5     </reference>
6
7     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
8         <command>
9             <action class="org.opendaylight.vcpe.cli.UniAddShellCommand">
10                 <argument ref="vcpeConsoleProvider" />
11             </action>
12         </command>
13         <command>
14             <action class="org.opendaylight.vcpe.cli.UniRemoveShellCommand">
15                  <argument ref="vcpeConsoleProvider" />
16             </action>
17         </command>
18         <command>
19             <action class="org.opendaylight.vcpe.cli.UniListShellCommand">
20                  <argument ref="vcpeConsoleProvider" />
21             </action>
22         </command>
23         <command>
24             <action class="org.opendaylight.vcpe.cli.UniShowShellCommand" >
25                 <argument ref="vcpeConsoleProvider" />
26             </action>
27         </command>
28         <command>
29             <action class="org.opendaylight.vcpe.cli.EvcRemoveShellCommand">
30                  <argument ref="vcpeConsoleProvider" />
31             </action>
32         </command>
33     </command-bundle>
34
35 </blueprint>