Package org.apache.sshd.client.auth

Examples of org.apache.sshd.client.auth.UserAuthKeyboardInteractive


    public AuthFuture authInteractive(String user, String password) throws IOException {
        log.debug("Trying keyboard-interactive authentication");
        synchronized (lock) {
            if (readyForAuth()) {
                userAuth = new UserAuthKeyboardInteractive(this, AUTHENTICATION_SERVICE, user, password);
                processUserAuth(null);
            }
            return authFuture;
        }
   }
View Full Code Here

TOP

Related Classes of org.apache.sshd.client.auth.UserAuthKeyboardInteractive

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.