Eliminate blueprint for southbound-cli commands
[openflowplugin.git] / applications / southbound-cli / src / main / resources / OSGI-INF / blueprint / commands.xml
diff --git a/applications/southbound-cli/src/main/resources/OSGI-INF/blueprint/commands.xml b/applications/southbound-cli/src/main/resources/OSGI-INF/blueprint/commands.xml
deleted file mode 100644 (file)
index 6c68e09..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<?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"/>
-    <reference id="clusterMemberInfoProvider"
-               interface="org.opendaylight.infrautils.diagstatus.ClusterMemberInfo"
-               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>
-            <cm:property name="org.osgi.service.http.port" value="8181"/>
-        </cm:default-properties>
-    </cm:property-placeholder>
-
-    <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">
-                <argument ref="dpnTracker"/>
-            </action>
-        </command>
-        <command name="openflow/shownode">
-            <action class="org.opendaylight.openflowplugin.applications.southboundcli.cli.ShowNodeCommandProvider">
-                <property name="dataBroker" ref="dataBroker" />
-            </action>
-        </command>
-        <command name="openflow/reconcile">
-            <action class="org.opendaylight.openflowplugin.applications.southboundcli.cli.Reconciliation">
-                <property name="reconciliationService" ref="reconciliationService"/>
-            </action>
-        </command>
-        <command name="openflow/getreconciliationcount">
-            <action class="org.opendaylight.openflowplugin.applications.southboundcli.cli.ReconciliationCount">
-                <property name="dataBroker" ref="dataBroker"/>
-            </action>
-        </command>
-        <command name="openflow/getreconciliationstate">
-            <action class="org.opendaylight.openflowplugin.applications.southboundcli.cli.GetReconciliationStateProvider">
-                <argument ref ="reconciliationJMXServiceMBean"/>
-            </action>
-        </command>
-        <command name="openflow/getflownodecache">
-            <action class="org.opendaylight.openflowplugin.applications.southboundcli.cli.GetFlowGroupCacheProvider">
-                <argument ref="flowGroupHistories"/>
-            </action>
-        </command>
-    </command-bundle>
-</blueprint>