aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client/src/main/java9/ai
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2022-07-15 14:33:23 +0200
committerGitHub <noreply@github.com>2022-07-15 14:33:23 +0200
commit2ced22a372c4a523f6b29e13d6c36cf73a2bc9b5 (patch)
treeedfa991ac607f3ed3c9b80c80421fa1b348554ed /vespa-feed-client/src/main/java9/ai
parentff26daaf31ec0567dc6a9049d5e275cf7c4810dc (diff)
parent7ac175f1da9220bc6565e129c2f3dce8ff03b077 (diff)
Merge pull request #23517 from vespa-engine/bjorncs/jdk8-compatv8.19.24
Build vespa-feed-client as multi-release JAR and use reflection as workaround for JDK8
Diffstat (limited to 'vespa-feed-client/src/main/java9/ai')
-rw-r--r--vespa-feed-client/src/main/java9/ai/vespa/feed/client/impl/TlsDetailsFactory.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/vespa-feed-client/src/main/java9/ai/vespa/feed/client/impl/TlsDetailsFactory.java b/vespa-feed-client/src/main/java9/ai/vespa/feed/client/impl/TlsDetailsFactory.java
new file mode 100644
index 00000000000..f9903d9943d
--- /dev/null
+++ b/vespa-feed-client/src/main/java9/ai/vespa/feed/client/impl/TlsDetailsFactory.java
@@ -0,0 +1,20 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package ai.vespa.feed.client.impl;
+
+import org.apache.hc.core5.reactor.ssl.TlsDetails;
+
+import javax.net.ssl.SSLEngine;
+
+/**
+ * {@link SSLEngine#getApplicationProtocol()} is not available on all JDK8 versions
+ * (https://bugs.openjdk.org/browse/JDK-8051498)
+ *
+ * @author bjorncs
+ */
+public class TlsDetailsFactory {
+ private TlsDetailsFactory() {}
+
+ public static TlsDetails create(SSLEngine e) {
+ return new TlsDetails(e.getSession(), e.getApplicationProtocol());
+ }
+}