Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / clustering / test / src / main / resources / OSGI-INF / component.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" 
3                activate="startUp" 
4                deactivate="shutDown" 
5                name="org.opendaylight.controller.clustering.test.internal.SimpleClient">
6   <implementation class="org.opendaylight.controller.clustering.test.internal.SimpleClient"/>
7   
8   <service>
9     <!-- Exports, can be multiple-->
10     <provide interface="org.eclipse.osgi.framework.console.CommandProvider"/>    
11   </service>
12   
13   <!-- Imports, can be multiple -->
14   <reference name="IClusterServices" 
15              bind="setIClusterServices" 
16              unbind="unsetIClusterServices" 
17              cardinality="1..1" 
18              interface="org.opendaylight.controller.clustering.services.IClusterServices"/>
19 </scr:component>