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
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();
}
}
return;
}
- connector.setProperty("sslImplemenationName",
+ connector.setProperty("sslImplementationName",
"org.apache.tomcat.util.net.jsse.TesterBug50640SslImpl");
connector.setProperty(TesterBug50640SslImpl.PROPERTY_NAME,
TesterBug50640SslImpl.PROPERTY_VALUE);
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's default JSSE provider. Note that the