org.seleniumhq.jetty7.http.ssl.SslContextFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-repacked Show documentation
Show all versions of jetty-repacked Show documentation
Browser automation framework dependency on jetty
package org.eclipse.jetty.http.ssl;
/* ------------------------------------------------------------ */
/**
* @deprecated Use org.eclipse.jetty.util.ssl.SslContextFactory
*/
public class SslContextFactory extends org.eclipse.jetty.util.ssl.SslContextFactory
{
public SslContextFactory()
{
super();
}
public SslContextFactory(boolean trustAll)
{
super(trustAll);
}
public SslContextFactory(String keyStorePath)
{
super(keyStorePath);
}
}