From 06563d01b34b74e77daf6888006efd9cbbf880c9 Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Mon, 28 Jan 2013 15:04:21 -0600 Subject: [PATCH] [Bug 393933] remove http's ssl context factory, it is in util --- .../jetty/http/ssl/SslContextFactory.java | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 jetty-http/src/main/java/org/eclipse/jetty/http/ssl/SslContextFactory.java diff --git a/jetty-http/src/main/java/org/eclipse/jetty/http/ssl/SslContextFactory.java b/jetty-http/src/main/java/org/eclipse/jetty/http/ssl/SslContextFactory.java deleted file mode 100644 index 93225eb2296..00000000000 --- a/jetty-http/src/main/java/org/eclipse/jetty/http/ssl/SslContextFactory.java +++ /dev/null @@ -1,42 +0,0 @@ -// -// ======================================================================== -// Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd. -// ------------------------------------------------------------------------ -// All rights reserved. This program and the accompanying materials -// are made available under the terms of the Eclipse Public License v1.0 -// and Apache License v2.0 which accompanies this distribution. -// -// The Eclipse Public License is available at -// http://www.eclipse.org/legal/epl-v10.html -// -// The Apache License v2.0 is available at -// http://www.opensource.org/licenses/apache2.0.php -// -// You may elect to redistribute this code under either of these licenses. -// ======================================================================== -// - -package org.eclipse.jetty.http.ssl; - -/* ------------------------------------------------------------ */ -/** - * @deprecated Use org.eclipse.jetty.util.ssl.SslContextFactory - */ -@Deprecated -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); - } -}