Author: fhanik
Date: Wed Oct 17 10:51:44 2007
New Revision: 585604

URL: http://svn.apache.org/viewvc?rev=585604&view=rev
Log:
Fix property setter for keystore type

Modified:
    tomcat/tc6.0.x/trunk/STATUS
    tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProtocol.java

Modified: tomcat/tc6.0.x/trunk/STATUS
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS?rev=585604&r1=585603&r2=585604&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/STATUS (original)
+++ tomcat/tc6.0.x/trunk/STATUS Wed Oct 17 10:51:44 2007
@@ -52,11 +52,6 @@
   +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]

Modified: 
tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProtocol.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProtocol.java?rev=585604&r1=585603&r2=585604&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProtocol.java 
(original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProtocol.java 
Wed Oct 17 10:51:44 2007
@@ -558,7 +558,9 @@
     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);}



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to