X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Futil%2Fhandler%2Fssh%2Fclient%2FInvoker.java;fp=opendaylight%2Fnetconf%2Fnetconf-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Futil%2Fhandler%2Fssh%2Fclient%2FInvoker.java;h=0000000000000000000000000000000000000000;hp=fffb304d26be7b3b32787fa1ae43e5392023bbd8;hb=c3108b4e80ec9f6ee6c8cf96df3009bb91dc8bc0;hpb=04a788d2df5303c60cdbcff02254291f411566bd diff --git a/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/ssh/client/Invoker.java b/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/ssh/client/Invoker.java deleted file mode 100644 index fffb304d26..0000000000 --- a/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/ssh/client/Invoker.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. 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.netconf.util.handler.ssh.client; - -import java.io.IOException; - -/** - * Abstract class providing mechanism of invoking various SSH level services. - * Class is not allowed to be extended, as it provides its own implementations via instance initiators. - */ -public abstract class Invoker { - private boolean invoked = false; - - private Invoker(){} - - protected boolean isInvoked() { - // TODO invoked is always false - return invoked; - } - - abstract void invoke(SshSession session) throws IOException; - - /** - * Invoker implementation to invokes subsystem SSH service. - * - * @param subsystem - * @return - */ - public static Invoker subsystem(final String subsystem) { - return new Invoker() { - @Override - void invoke(SshSession session) throws IOException { - if (isInvoked()) { - throw new IllegalStateException("Already invoked."); - } - - session.startSubSystem(subsystem); - } - }; - } -}