BZ 51811: Fix typo in attribute name
authorrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 18 Sep 2011 12:22:39 +0000 (12:22 +0000)
committerrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 18 Sep 2011 12:22:39 +0000 (12:22 +0000)
(sslImplementationName instead of
 sslImplemenationName).

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1172269 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/AbstractHttp11JsseProtocol.java
test/org/apache/tomcat/util/net/TestCustomSsl.java
webapps/docs/config/http.xml

index 2f79756..8cf49f6 100644 (file)
@@ -103,10 +103,10 @@ public abstract class AbstractHttp11JsseProtocol
         return endpoint.getAllowUnsafeLegacyRenegotiation();
     }
 
-    private String sslImplemenationName = null;
-    public String getSslImplemenationName() { return sslImplemenationName; }
-    public void setSslImplemenationName(String s) {
-        this.sslImplemenationName = s;
+    private String sslImplementationName = null;
+    public String getSslImplementationName() { return sslImplementationName; }
+    public void setSslImplementationName(String s) {
+        this.sslImplementationName = s;
     }
 
     // ------------------------------------------------------- Lifecycle methods
@@ -115,7 +115,7 @@ public abstract class AbstractHttp11JsseProtocol
     public void init() throws Exception {
         // SSL implementation needs to be in place before end point is
         // initialized
-        sslImplementation = SSLImplementation.getInstance(sslImplemenationName);
+        sslImplementation = SSLImplementation.getInstance(sslImplementationName);
         super.init();
     }
 }
index 0cdaf6b..ea10715 100644 (file)
@@ -54,7 +54,7 @@ public class TestCustomSsl extends TomcatBaseTest {
             return;
         }
 
-        connector.setProperty("sslImplemenationName", 
+        connector.setProperty("sslImplementationName", 
                 "org.apache.tomcat.util.net.jsse.TesterBug50640SslImpl");
         connector.setProperty(TesterBug50640SslImpl.PROPERTY_NAME,
                 TesterBug50640SslImpl.PROPERTY_VALUE);
index 80ae2b1..3e34cd3 100644 (file)
       used.</p>
     </attribute>
 
-    <attribute name="sslImplemenationName" required="false">
+    <attribute name="sslImplementationName" required="false">
       <p>The class name of the SSL implementation to use. If not specified, the
       default of <code>org.apache.tomcat.util.net.jsse.JSSEImplementation</code>
       will be used which wraps JVM&apos;s default JSSE provider. Note that the