d542e1952a5e847e09ad771828b1ab57df7b1989
[controller.git] / opendaylight / netconf / netconf-netty-util / src / main / java / org / opendaylight / controller / netconf / nettyutil / handler / ssh / client / Invoker.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.netconf.nettyutil.handler.ssh.client;
9
10 import java.io.IOException;
11
12 /**
13  * Abstract class providing mechanism of invoking various SSH level services.
14  * Class is not allowed to be extended, as it provides its own implementations via instance initiators.
15  */
16 public abstract class Invoker {
17     private boolean invoked = false;
18
19     private Invoker(){}
20
21     protected boolean isInvoked() {
22         // TODO invoked is always false
23         return invoked;
24     }
25
26     abstract void invoke(SshSession session) throws IOException;
27
28     /**
29      * Invoker implementation to invokes subsystem SSH service.
30      *
31      * @param subsystem
32      * @return
33      */
34     public static Invoker subsystem(final String subsystem) {
35         return new Invoker() {
36             @Override
37             void invoke(SshSession session) throws IOException {
38                 if (isInvoked()) {
39                     throw new IllegalStateException("Already invoked.");
40                 }
41
42                 session.startSubSystem(subsystem);
43             }
44         };
45     }
46 }