Merge dev/fluorine work across to master
[unimgr.git] / cli / src / main / java / org / opendaylight / unimgr / cli / UniShowShellCommand.java
diff --git a/cli/src/main/java/org/opendaylight/unimgr/cli/UniShowShellCommand.java b/cli/src/main/java/org/opendaylight/unimgr/cli/UniShowShellCommand.java
deleted file mode 100755 (executable)
index 6c4cc45..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (c) 2015 CableLabs 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.unimgr.cli;
-
-import org.apache.karaf.shell.commands.Argument;
-import org.apache.karaf.shell.commands.Command;
-import org.apache.karaf.shell.console.OsgiCommandSupport;
-import org.opendaylight.unimgr.api.IUnimgrConsoleProvider;
-import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.unimgr.rev151012.UniAugmentation;
-
-@Command(name = "uni-show", scope = "uni", description = "Shows detailed information about an uni.")
-public class UniShowShellCommand extends OsgiCommandSupport {
-
-    protected IUnimgrConsoleProvider provider;
-
-    @Argument(index = 0, name = "ip", description = "Uni ipAddress", required = true, multiValued = false)
-    String ipAddress;
-
-    public UniShowShellCommand(IUnimgrConsoleProvider provider) {
-        this.provider = provider;
-    }
-
-    @Override
-    protected Object doExecute() throws Exception {
-        StringBuilder sb = new StringBuilder();
-        IpAddress ipAddre = new IpAddress(ipAddress.toCharArray());
-        UniAugmentation uni = provider.getUni(ipAddre);
-
-        if (uni != null) {
-            sb.append(String.format("Ip Address: <%s>\n", uni.getIpAddress().getIpv4Address().getValue()));
-            sb.append(String.format("Mac address: <%s>\n", uni.getMacAddress()));
-            sb.append(String.format("Physical medium: <%s>\n", uni.getPhysicalMedium()));
-            sb.append(String.format("Speed: " + uni.getSpeed() + "\n"));
-            sb.append(String.format("Mode: <%s>\n", uni.getMode()));
-            sb.append(String.format("Mac layer: <%s>\n", uni.getMacLayer()));
-            sb.append(String.format("Type: <%s>\n", uni.getType()));
-            sb.append(String.format("Mtu size: <%s>\n", uni.getMtuSize()));
-            return sb.toString();
-        } else {
-            return String.format("No uni found. Check the logs for more details.");
-        }
-    }
-}