Add RTD configuration
[openflowplugin.git] / drop-test-karaf / src / main / resources / OSGI-INF / blueprint / commands.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
3
4     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.0.0">
5         <command name="drop-test/dropAllPackets">
6             <action class="org.opendaylight.openflowplugin.droptestkaraf.DropAllPacketsCommandProvider"/>
7              <completers>
8                 <ref component-id="onOffCompleter"/>
9                 <null/>
10             </completers>
11         </command>
12         <command name="drop-test/dropAllPacketsRpc">
13             <action class="org.opendaylight.openflowplugin.droptestkaraf.DropAllPacketsRpcCommandProvider"/>
14              <completers>
15                 <ref component-id="onOffCompleter"/>
16                 <null/>
17             </completers>
18         </command>
19         <command name="drop-test/showDropStats">
20             <action class="org.opendaylight.openflowplugin.droptestkaraf.ShowDropStatsCommandProvider"/>
21         </command>
22         <command name="drop-test/clearDropStats">
23             <action class="org.opendaylight.openflowplugin.droptestkaraf.ClearDropStatsCommandProvider"/>
24         </command>
25     </command-bundle>
26
27     <bean id="onOffCompleter" class="org.opendaylight.openflowplugin.droptestkaraf.DropAllPacketsCompleter"/>
28
29 </blueprint>