Package hudson.scm.SubversionSCM.DescriptorImpl

Examples of hudson.scm.SubversionSCM.DescriptorImpl.SshPublicKeyCredential


                if (keyFile == null) {
                    logWriter.println("Passing user name " + username + " and password you entered to SSH");
                    cred = new PasswordCredential(username, password);
                } else {
                    logWriter.println("Attempting a public key authentication with username " + username);
                    cred = new SshPublicKeyCredential(username, password, keyFile);
                }
            }
            if (kind.equals(ISVNAuthenticationManager.SSL)) {
                logWriter.println("Attempting an SSL client certificate authentcation");
                try {
View Full Code Here

TOP

Related Classes of hudson.scm.SubversionSCM.DescriptorImpl.SshPublicKeyCredential

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.