From: fhanik Date: Mon, 13 Nov 2006 23:35:02 +0000 (+0000) Subject: password property did not go through X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=de641a6e225a4a5bf453fab1a65c55094685347b;p=tomcat7.0 password property did not go through git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@474577 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/http11/Http11NioProtocol.java b/java/org/apache/coyote/http11/Http11NioProtocol.java index d05bf8a4b..9d09cf949 100644 --- a/java/org/apache/coyote/http11/Http11NioProtocol.java +++ b/java/org/apache/coyote/http11/Http11NioProtocol.java @@ -515,6 +515,9 @@ public class Http11NioProtocol implements ProtocolHandler, MBeanRegistration public String getKeystorePass() { return ep.getKeystorePass();} public void setKeystorePass(String s ) { ep.setKeystorePass(s);} + public void setKeypass(String s) { setKeystorePass(s);} + public String getKeypass() { return getKeystorePass();} + public String getKeystoreType() { return ep.getKeystoreType();} public void setKeystoreType(String s ) { ep.setKeystoreType(s);}