Merge "Created Sample Feature Test Class for Base Feature Repository"
[controller.git] / opendaylight / topologymanager / shell / src / main / resources / OSGI-INF / blueprint / blueprint.xml
1 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
2
3     <reference id="topologyManagerRef" interface="org.opendaylight.controller.topologymanager.ITopologyManagerShell"/>
4     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
5
6         <command>
7         <action class="org.opendaylight.controller.topologymanager.shell.AddUserLink">
8             <property name="topologyManager" ref="topologyManagerRef"/>
9             </action>
10         </command>
11
12         <command>
13         <action class="org.opendaylight.controller.topologymanager.shell.DeleteUserLink">
14             <property name="topologyManager" ref="topologyManagerRef"/>
15             </action>
16         </command>
17
18         <command>
19         <action class="org.opendaylight.controller.topologymanager.shell.PrintNodeEdges">
20             <property name="topologyManager" ref="topologyManagerRef"/>
21             </action>
22         </command>
23
24         <command>
25         <action class="org.opendaylight.controller.topologymanager.shell.PrintUserLink">
26             <property name="topologyManager" ref="topologyManagerRef"/>
27             </action>
28         </command>
29
30     </command-bundle>
31
32
33 </blueprint>