blob: fdddc88ea72f5d146fbb038141574c70ec92b913 [file] [log] [blame]
Davide Sanvito05983ba2017-12-01 11:46:44 +01001<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
2
3 <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
4
5 <command>
6 <action class="org.onosproject.imr.cli.StartMonitorCommand"/>
7 <completers>
8 <ref component-id="applicationIdCompleter"/>
9 <ref component-id="applicationNameCompleter"/>
10 <ref component-id="intentKeyImrCompleter"/>
11 </completers>
12 </command>
13
14 <command>
15 <action class="org.onosproject.imr.cli.StopMonitorCommand"/>
16 <completers>
17 <ref component-id="applicationIdCompleter"/>
18 <ref component-id="applicationNameCompleter"/>
19 <ref component-id="intentKeyImrCompleter"/>
20 </completers>
21 </command>
22
23 </command-bundle>
24
25 <bean id="applicationIdCompleter" class="org.onosproject.imr.cli.ApplicationIdImrCompleter"/>
26 <bean id="applicationNameCompleter" class="org.onosproject.imr.cli.ApplicationNameImrCompleter"/>
27 <bean id="intentKeyImrCompleter" class="org.onosproject.imr.cli.IntentKeyImrCompleter"/>
28
29</blueprint>