summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2017-10-19 14:45:28 +0200
committerGitHub <noreply@github.com>2017-10-19 14:45:28 +0200
commitdca1e05b7a15a3a0ae8f1b5f8b533eb990be1a96 (patch)
tree647ab6e3a682dbf8ab33a3981886a44a2edf6244 /jdisc_http_service/src
parent4aebf696cdf02151b993f407666acb7690932116 (diff)
Revert "Add back SslKeyStoreFactoryProvider as a temporary workaround"
Diffstat (limited to 'jdisc_http_service/src')
-rw-r--r--jdisc_http_service/src/main/java/com/yahoo/jdisc/http/ssl/SslKeyStoreFactory.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/ssl/SslKeyStoreFactory.java b/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/ssl/SslKeyStoreFactory.java
deleted file mode 100644
index 6bffd080cf9..00000000000
--- a/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/ssl/SslKeyStoreFactory.java
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.jdisc.http.ssl;
-
-/**
- * A factory for SSL key stores.
- *
- * @author bratseth
- */
-public interface SslKeyStoreFactory {
-
- SslKeyStore createKeyStore(ReaderForPath certificateFile, ReaderForPath keyFile);
-
- SslKeyStore createTrustStore(ReaderForPath certificateFile);
-
-}