[Pki-devel] [PATCH] Added JSSSupport.getProtocol().

Endi Sukma Dewata edewata at redhat.com
Wed Jul 22 19:42:29 UTC 2015


A dummy getProtocol() has been added to JSSSupport in order
to build with newer Tomcat.

https://bugzilla.redhat.com/show_bug.cgi?id=1245786

-- 
Endi S. Dewata
-------------- next part --------------
From 4bd20b44e0fa191c059f6b311663e7f8b396a5cb Mon Sep 17 00:00:00 2001
From: "Endi S. Dewata" <edewata at redhat.com>
Date: Wed, 22 Jul 2015 15:17:04 +0200
Subject: [PATCH] Added JSSSupport.getProtocol().

A dummy getProtocol() has been added to JSSSupport in order
to build with newer Tomcat.

https://bugzilla.redhat.com/show_bug.cgi?id=1245786
---
 src/org/apache/tomcat/util/net/jss/JSSSupport.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/org/apache/tomcat/util/net/jss/JSSSupport.java b/src/org/apache/tomcat/util/net/jss/JSSSupport.java
index e243ca134852cefe7e8353d9b92eb5915004b0e8..4c04034d25396c3f6f3641b2844adb70d6c89100 100755
--- a/src/org/apache/tomcat/util/net/jss/JSSSupport.java
+++ b/src/org/apache/tomcat/util/net/jss/JSSSupport.java
@@ -97,6 +97,10 @@ class JSSSupport implements SSLSupport {
         return null;
     }
 
+    public String getProtocol() throws IOException {
+        return null;
+    }
+
     public String getSessionId() throws IOException {
         return null;
     }
-- 
2.4.6



More information about the Pki-devel mailing list