Bump versions by x.(y+1).z
[openflowplugin.git] / applications / southbound-cli / src / main / resources / OSGI-INF / blueprint / commands.xml
index 2ab42185d9a9a2c8a00b6676f09cd47e10fed23e..6c68e0924a36604d19a5d77ce406ebd403e532b7 100644 (file)
@@ -1,7 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
            xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.2.0">
-
+    <reference id="dataBroker"
+               interface="org.opendaylight.mdsal.binding.api.DataBroker"/>
     <reference id="reconciliationJMXServiceMBean"
                interface="org.opendaylight.openflowplugin.applications.frm.ReconciliationJMXServiceMBean"
                availability="optional"/>
                availability="optional"/>
     <reference id="flowGroupHistories"
                interface="org.opendaylight.openflowplugin.api.openflow.FlowGroupInfoHistories"/>
+    <reference id="reconciliationService"
+               interface="org.opendaylight.openflowplugin.applications.southboundcli.ReconcileService"/>
+    <reference id="dpnTracker"
+               interface="org.opendaylight.openflowplugin.applications.southboundcli.DpnTracker"/>
 
     <cm:property-placeholder persistent-id="org.ops4j.pax.web" update-strategy="none">
         <cm:default-properties>
@@ -20,7 +25,7 @@
     <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.0.0">
         <command name="openflow/getallnodes">
             <action class="org.opendaylight.openflowplugin.applications.southboundcli.cli.GetAllNodesCommandProvider">
-                <property name="nodeListener" ref="nodeListener"/>
+                <argument ref="dpnTracker"/>
             </action>
         </command>
         <command name="openflow/shownode">
@@ -41,8 +46,6 @@
         <command name="openflow/getreconciliationstate">
             <action class="org.opendaylight.openflowplugin.applications.southboundcli.cli.GetReconciliationStateProvider">
                 <argument ref ="reconciliationJMXServiceMBean"/>
-                <argument ref="clusterMemberInfoProvider"/>
-                <argument value="${org.osgi.service.http.port}"/>
             </action>
         </command>
         <command name="openflow/getflownodecache">
@@ -51,5 +54,4 @@
             </action>
         </command>
     </command-bundle>
-
 </blueprint>