Package hudson.scm.SubversionSCM.DescriptorImpl

Examples of hudson.scm.SubversionSCM.DescriptorImpl.SslClientCertificateCredential


                }
            }
            if (kind.equals(ISVNAuthenticationManager.SSL)) {
                logWriter.println("Attempting an SSL client certificate authentcation");
                try {
                    cred = new SslClientCertificateCredential(keyFile, password);
                } catch (IOException e) {
                    e.printStackTrace(logWriter);
                    return null;
                }
            }
View Full Code Here

TOP

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

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.