public class OptionalSslConnectionFactory extends AbstractConnectionFactory
A ConnectionFactory whose connections detect whether the first bytes are TLS bytes and upgrades to either a TLS connection or to another configurable connection.
AbstractLifeCycle.AbstractLifeCycleListenerConnectionFactory.UpgradingContainer.InheritedListener, Container.ListenerLifeCycle.Listener| Constructor and Description |
|---|
OptionalSslConnectionFactory(SslConnectionFactory sslConnectionFactory,
java.lang.String otherProtocol)
Creates a new ConnectionFactory whose connections can upgrade to TLS or another protocol.
|
| Modifier and Type | Method and Description |
|---|---|
Connection |
newConnection(Connector connector,
EndPoint endPoint)
Creates a new
Connection with the given parameters |
protected void |
otherProtocol(java.nio.ByteBuffer buffer,
EndPoint endPoint)
Callback method invoked when
otherProtocol is null
and the first bytes are not TLS. |
protected boolean |
seemsTLS(java.nio.ByteBuffer buffer) |
configure, getFactories, getInputBufferSize, getProtocol, getProtocols, setInputBufferSize, toStringaddBean, addBean, addBean, addEventListener, addManaged, contains, destroy, doStart, doStop, dump, dump, dump, dump, dump, dumpBeans, dumpObject, dumpObjects, dumpStdErr, dumpThis, getBean, getBeans, getBeans, getContainedBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, start, stop, unmanage, updateBean, updateBean, updateBeansaddLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stopclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitdumpObjects, dumpSelfpublic OptionalSslConnectionFactory(SslConnectionFactory sslConnectionFactory, java.lang.String otherProtocol)
Creates a new ConnectionFactory whose connections can upgrade to TLS or another protocol.
If otherProtocol is null, and the first bytes are not TLS, then
otherProtocol(ByteBuffer, EndPoint) is called.
sslConnectionFactory - The SslConnectionFactory to use if the first bytes are TLSotherProtocol - the protocol of the ConnectionFactory to use if the first bytes are not TLS,
or null to explicitly handle the non-TLS casepublic Connection newConnection(Connector connector, EndPoint endPoint)
ConnectionFactoryCreates a new Connection with the given parameters
connector - The Connector creating this connectionendPoint - the EndPoint associated with the connectionConnectionprotected boolean seemsTLS(java.nio.ByteBuffer buffer)
buffer - The buffer with the first bytes of the connectionprotected void otherProtocol(java.nio.ByteBuffer buffer,
EndPoint endPoint)
Callback method invoked when otherProtocol is null
and the first bytes are not TLS.
This typically happens when a client is trying to connect to a TLS
port using the http scheme (and not the https scheme).
buffer - The buffer with the first bytes of the connectionendPoint - The connection EndPoint objectseemsTLS(ByteBuffer)Copyright © 1995–2022 Webtide. All rights reserved.