Eliminate blueprint for southbound-cli commands
[openflowplugin.git] / applications / southbound-cli / src / main / java / org / opendaylight / openflowplugin / applications / southboundcli / cli / ReconciliationCount.java
diff --git a/applications/southbound-cli/src/main/java/org/opendaylight/openflowplugin/applications/southboundcli/cli/ReconciliationCount.java b/applications/southbound-cli/src/main/java/org/opendaylight/openflowplugin/applications/southboundcli/cli/ReconciliationCount.java
deleted file mode 100644 (file)
index 16c9b95..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (c) 2018 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.openflowplugin.applications.southboundcli.cli;
-
-import java.util.Collection;
-import java.util.Formatter;
-import org.apache.karaf.shell.commands.Command;
-import org.apache.karaf.shell.console.OsgiCommandSupport;
-import org.opendaylight.mdsal.binding.api.DataBroker;
-import org.opendaylight.openflowplugin.applications.southboundcli.util.ShellUtil;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflowplugin.app.reconciliation.service.rev180227.reconciliation.counter.ReconcileCounter;
-
-@Command(scope = "openflow", name = "getReconciliationCount",
-        description = "Displays the number of reconciliation triggered for openflow nodes")
-public class ReconciliationCount extends OsgiCommandSupport {
-
-    private DataBroker dataBroker;
-
-    public void setDataBroker(final DataBroker dataBroker) {
-        this.dataBroker = dataBroker;
-    }
-
-    @SuppressWarnings("checkstyle:RegexpSinglelineJava")
-    @Override
-    protected Object doExecute() {
-        Collection<ReconcileCounter> result = ShellUtil.getReconcileCount(dataBroker);
-        if (result.isEmpty()) {
-            System.out.println("Reconciliation count not yet available for openflow nodes.");
-        } else {
-            StringBuilder stringBuilder = new StringBuilder();
-            final Formatter formatter = new Formatter(stringBuilder);
-            System.out.println(getReconcileCountHeaderOutput());
-            System.out.println("--------------------------------------------------------------------------"
-                    + "---------------------------");
-            for (ReconcileCounter reconcile : result) {
-                System.out.println(formatter.format("%-15s %3s %-15s %9s %-20s %4s %-20s %n",
-                        reconcile.getNodeId(), "", reconcile.getSuccessCount(), "", reconcile.getFailureCount(), "",
-                        reconcile.getLastRequestTime().getValue()).toString());
-                stringBuilder.setLength(0);
-            }
-            formatter.close();
-        }
-        return null;
-    }
-
-    private static String getReconcileCountHeaderOutput() {
-        final Formatter formatter = new Formatter();
-        String header = formatter.format("%-15s %3s %-15s %3s %-15s %3s %-15s %n", "NodeId", "",
-                "ReconcileSuccessCount", "", "ReconcileFailureCount", "", "LastReconcileTime").toString();
-        formatter.close();
-        return header;
-    }
-}