Fix property setter for keystore type
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 17 Oct 2007 17:51:44 +0000 (17:51 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 17 Oct 2007 17:51:44 +0000 (17:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@585604 13f79535-47bb-0310-9956-ffa450edef68

STATUS
java/org/apache/coyote/http11/Http11NioProtocol.java

diff --git a/STATUS b/STATUS
index dc2628f..b9d0a69 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -52,11 +52,6 @@ PATCHES PROPOSED TO BACKPORT:
   +1: remm, fhanik,funkman, pero
   -1: 
 
-* Fix property setter for keystore type
-  http://issues.apache.org/bugzilla/show_bug.cgi?id=43634
-  +1: fhanik,funkman,remm, pero
-  -1: 
-
 * IcedTea support. Upcoming Linux distributions will package a (working) open source JRE,
   available in /usr. As a result, it could now be possible to use a "/usr/bin/java" binary
   if one is present and expect results. [tested on Fedora 8 test 3]
index b9cd041..b56081f 100644 (file)
@@ -558,7 +558,9 @@ public class Http11NioProtocol implements ProtocolHandler, MBeanRegistration
     public String getKeypass() { return getKeystorePass();}
     public String getKeystoreType() { return ep.getKeystoreType();}
     public void setKeystoreType(String s ) { ep.setKeystoreType(s);}
-    
+    public String getKeytype() { return getKeystoreType();}
+    public void setKeytype(String s ) { setKeystoreType(s);}
+
     public void setTruststoreFile(String f){ep.setTruststoreFile(f);}
     public String getTruststoreFile(){return ep.getTruststoreFile();}
     public void setTruststorePass(String p){ep.setTruststorePass(p);}