Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2020-01-23 13:32:26 +0000
committerThomas Watson2020-01-23 13:33:24 +0000
commitb7d653bc8e32ab0d325f4d89b482066f9c904a3d (patch)
treef3f2ff1c10d85a882886b7dbfd22bd4cccec45d6
parent27551d13c7e846c37beb6d33427e1118b9bd347f (diff)
downloadrt.equinox.bundles-b7d653bc8e32ab0d325f4d89b482066f9c904a3d.tar.gz
rt.equinox.bundles-b7d653bc8e32ab0d325f4d89b482066f9c904a3d.tar.xz
rt.equinox.bundles-b7d653bc8e32ab0d325f4d89b482066f9c904a3d.zip
Bug 559444 - Jetty Server: Https fails due to changes in the jettyI20200123-1800
SslContextFactory Change-Id: Ie7e027da9902f92b976efbc5b0dbe4360798e813 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java b/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java
index 42a63e856..68f4fd307 100644
--- a/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java
+++ b/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2018 IBM Corporation and others.
+ * Copyright (c) 2007, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -166,7 +166,7 @@ public class HttpServerManager implements ManagedServiceFactory {
ServerConnector httpsConnector = null;
if (Details.getBoolean(dictionary, JettyConstants.HTTPS_ENABLED, false)) {
// SSL Context Factory for HTTPS and SPDY
- SslContextFactory sslContextFactory = new SslContextFactory();
+ SslContextFactory.Server sslContextFactory = new SslContextFactory.Server();
//sslContextFactory.setKeyStore(KeyS)
//Not sure if the next tree are properly migrated from jetty 8...

Back to the top