Move adsal into its own subdirectory.
[controller.git] / opendaylight / topologymanager / shell / src / main / java / org / opendaylight / controller / topologymanager / shell / PrintUserLink.java
diff --git a/opendaylight/topologymanager/shell/src/main/java/org/opendaylight/controller/topologymanager/shell/PrintUserLink.java b/opendaylight/topologymanager/shell/src/main/java/org/opendaylight/controller/topologymanager/shell/PrintUserLink.java
deleted file mode 100644 (file)
index df7ab35..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
-* Copyright (c) 2014 Inocybe Technologies, 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.controller.topologymanager.shell;
-
-import org.apache.felix.gogo.commands.Command;
-import org.apache.karaf.shell.console.OsgiCommandSupport;
-import org.opendaylight.controller.topologymanager.ITopologyManagerShell;
-
-@Command(scope = "topologymanager", name = "printUserLink", description="Prints user link")
-public class PrintUserLink extends OsgiCommandSupport{
-    private ITopologyManagerShell topologyManager;
-
-    @Override
-    protected Object doExecute() throws Exception {
-        for(String p : topologyManager.printUserLink()) {
-            System.out.println(p);
-        }
-        return null;
-    }
-
-    public void setTopologyManager(ITopologyManagerShell topologyManager){
-        this.topologyManager = topologyManager;
-    }
-}