!27 Fix build fail for tomcat upgrade
From: @wk333 Reviewed-by: @cherry530 Signed-off-by: @cherry530
This commit is contained in:
commit
fc3a5820f6
@ -1,70 +0,0 @@
|
|||||||
From 2921cf92d8968fef21d3459523f0c469ac64089a Mon Sep 17 00:00:00 2001
|
|
||||||
From: wang--ge <wang__ge@126.com>
|
|
||||||
Date: Wed, 25 May 2022 16:47:46 +0800
|
|
||||||
Subject: [PATCH] add abstract method for class JSSUtil
|
|
||||||
|
|
||||||
---
|
|
||||||
.../main/java/org/dogtagpki/tomcat/JSSUtil.java | 16 ++++++++++++++--
|
|
||||||
1 file changed, 14 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/tomcat-9.0/src/main/java/org/dogtagpki/tomcat/JSSUtil.java b/tomcat-9.0/src/main/java/org/dogtagpki/tomcat/JSSUtil.java
|
|
||||||
index 8370370..9c3326d 100644
|
|
||||||
--- a/tomcat-9.0/src/main/java/org/dogtagpki/tomcat/JSSUtil.java
|
|
||||||
+++ b/tomcat-9.0/src/main/java/org/dogtagpki/tomcat/JSSUtil.java
|
|
||||||
@@ -19,6 +19,8 @@
|
|
||||||
|
|
||||||
package org.dogtagpki.tomcat;
|
|
||||||
|
|
||||||
+import java.security.NoSuchAlgorithmException;
|
|
||||||
+
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.HashSet;
|
|
||||||
@@ -28,6 +30,7 @@ import java.util.Set;
|
|
||||||
import javax.net.ssl.KeyManager;
|
|
||||||
import javax.net.ssl.KeyManagerFactory;
|
|
||||||
import javax.net.ssl.SSLEngine;
|
|
||||||
+import javax.net.ssl.SSLSessionContext;
|
|
||||||
import javax.net.ssl.TrustManager;
|
|
||||||
import javax.net.ssl.TrustManagerFactory;
|
|
||||||
|
|
||||||
@@ -48,6 +51,7 @@ public class JSSUtil extends SSLUtilBase {
|
|
||||||
private Set<String> protocols;
|
|
||||||
private Set<String> ciphers;
|
|
||||||
|
|
||||||
+
|
|
||||||
public JSSUtil(SSLHostConfigCertificate cert) {
|
|
||||||
super(cert);
|
|
||||||
|
|
||||||
@@ -95,13 +99,11 @@ public class JSSUtil extends SSLUtilBase {
|
|
||||||
return new TrustManager[] { new JSSNativeTrustManager() };
|
|
||||||
}
|
|
||||||
|
|
||||||
- @Override
|
|
||||||
public SSLContext createSSLContextInternal(List<String> negotiableProtocols) throws Exception {
|
|
||||||
logger.debug("JSSUtil createSSLContextInternal(...) keyAlias=" + keyAlias);
|
|
||||||
return new JSSContext(keyAlias);
|
|
||||||
}
|
|
||||||
|
|
||||||
- @Override
|
|
||||||
public boolean isTls13RenegAuthAvailable() {
|
|
||||||
logger.debug("JSSUtil: isTls13RenegAuthAvailable()");
|
|
||||||
return true;
|
|
||||||
@@ -127,4 +129,14 @@ public class JSSUtil extends SSLUtilBase {
|
|
||||||
|
|
||||||
return ciphers;
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+ @Override
|
|
||||||
+ public void configureSessionContext(SSLSessionContext sslSessionContext) {
|
|
||||||
+ logger.debug("JSSUtil: configureSessionContext");
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ @Override
|
|
||||||
+ public SSLContext createSSLContext(List<String> negotiableProtocols) throws NoSuchAlgorithmException {
|
|
||||||
+ return new JSSContext(keyAlias);
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
--
|
|
||||||
2.27.0
|
|
||||||
|
|
||||||
@ -4,7 +4,7 @@ URL: http://www.dogtagpki.org/wiki/TomcatJSS
|
|||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Version: 8.2.0
|
Version: 8.2.0
|
||||||
Release: 1
|
Release: 2
|
||||||
Source: https://github.com/dogtagpki/tomcatjss/archive/refs/tags/tomcatjss-8.2.0.tar.gz
|
Source: https://github.com/dogtagpki/tomcatjss/archive/refs/tags/tomcatjss-8.2.0.tar.gz
|
||||||
BuildRequires: ant apache-commons-lang3 java-latest-openjdk-devel slf4j
|
BuildRequires: ant apache-commons-lang3 java-latest-openjdk-devel slf4j
|
||||||
BuildRequires: slf4j-jdk14 jss >= 4.6.0 tomcat >= 1:9.0.7
|
BuildRequires: slf4j-jdk14 jss >= 4.6.0 tomcat >= 1:9.0.7
|
||||||
@ -12,8 +12,6 @@ Requires: apache-commons-lang3 java-latest-openjdk-headless jpackage-uti
|
|||||||
Conflicts: pki-base < 10.10.0
|
Conflicts: pki-base < 10.10.0
|
||||||
%define _sharedstatedir /var/lib
|
%define _sharedstatedir /var/lib
|
||||||
|
|
||||||
Patch0: 0001-add-abstract-method-for-class-JSSUtil.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Apache Tomcat of JSS Connector.
|
Apache Tomcat of JSS Connector.
|
||||||
|
|
||||||
@ -50,6 +48,9 @@ export JAVA_HOME=/usr/lib/jvm/${home_path}
|
|||||||
%{_javadir}/*
|
%{_javadir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Nov 13 2024 wangkai <13474090681@163.com> - 8.2.0-2
|
||||||
|
- Fix build fail for tomcat upgrade
|
||||||
|
|
||||||
* Fri Mar 31 2023 lilong <lilong@kylinos.cn> - 8.2.0-1
|
* Fri Mar 31 2023 lilong <lilong@kylinos.cn> - 8.2.0-1
|
||||||
- Upgrade to 8.2.0
|
- Upgrade to 8.2.0
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user