Update UNI
[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="unimgrConsoleProvider" availability="mandatory"
4         activation="eager" interface="org.opendaylight.unimgr.api.IUnimgrConsoleProvider">
5     </reference>
6
7     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
8         <command>
9             <action class="org.opendaylight.unimgr.cli.UniAddShellCommand">
10                 <argument ref="unimgrConsoleProvider" />
11             </action>
12         </command>
13         <command>
14             <action class="org.opendaylight.unimgr.cli.UniUpdateShellCommand">
15                  <argument ref="unimgrConsoleProvider" />
16             </action>
17         </command>
18         <command>
19             <action class="org.opendaylight.unimgr.cli.UniRemoveShellCommand">
20                  <argument ref="unimgrConsoleProvider" />
21             </action>
22         </command>
23         <command>
24             <action class="org.opendaylight.unimgr.cli.UniListShellCommand">
25                  <argument ref="unimgrConsoleProvider" />
26             </action>
27         </command>
28         <command>
29             <action class="org.opendaylight.unimgr.cli.UniShowShellCommand" >
30                 <argument ref="unimgrConsoleProvider" />
31             </action>
32         </command>
33         <command>
34             <action class="org.opendaylight.unimgr.cli.EvcRemoveShellCommand">
35                  <argument ref="unimgrConsoleProvider" />
36             </action>
37         </command>
38         <command>
39             <action class="org.opendaylight.unimgr.cli.EvcAddShellCommand">
40                  <argument ref="unimgrConsoleProvider" />
41             </action>
42         </command>
43     </command-bundle>
44
45 </blueprint>