public class TcpNioSSLConnection extends TcpNioConnection
TcpConnection
supporting SSL/TLS over NIO.
Unlike TcpNetConnection, which uses Sockets, the JVM does not directly support SSL for
SocketChannels, used by NIO. Instead, the SSLEngine is provided whereby the SSL
encryption is performed by passing in a plain text buffer, and receiving an
encrypted buffer to transmit over the network. Similarly, encrypted data read from
the network is decrypted.However, before this can be done, certain handshaking operations are required, involving the creation of data buffers which must be exchanged by the peers. A number of such transfers are required; once the handshake is finished, it is relatively simple to encrypt/decrypt the data.
Also, it may be deemed necessary to re-perform handshaking.
This class supports the management of handshaking as necessary, both from the initiating and receiving peers.
logger
Constructor and Description |
---|
TcpNioSSLConnection(SocketChannel socketChannel,
boolean server,
boolean lookupHost,
ApplicationEventPublisher applicationEventPublisher,
String connectionFactoryName,
SSLEngine sslEngine) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this connection.
|
protected org.springframework.integration.ip.tcp.connection.TcpNioConnection.ChannelOutputStream |
getChannelOutputStream() |
protected org.springframework.integration.ip.tcp.connection.TcpNioSSLConnection.SSLChannelOutputStream |
getSSLChannelOutputStream() |
SSLSession |
getSslSession() |
void |
init()
Initializes the SSLEngine and sets up the encryption/decryption buffers.
|
protected void |
sendToPipe(ByteBuffer networkBuffer)
Overrides super class method to perform decryption and/or participate
in handshaking.
|
void |
setHandshakeTimeout(int handshakeTimeout)
Set the timeout while waiting for handshake data (in seconds).
|
allocate, getDeserializerStateKey, getLastRead, getLastSend, getPayload, getPort, inputStream, isOpen, isUsingDirectBuffers, readPacket, run, send, setLastRead, setPipeTimeout, setTaskExecutor, setUsingDirectBuffers, shutdownInput, shutdownOutput
closeConnection, enableManualListenerRegistration, getConnectionFactoryName, getConnectionId, getDeserializer, getHostAddress, getHostName, getListener, getMapper, getSender, getSenders, getSerializer, getSocketInfo, incrementAndGetConnectionSequence, isNoReadErrorOnClose, isServer, publishConnectionCloseEvent, publishConnectionExceptionEvent, publishConnectionOpenEvent, publishEvent, registerListener, registerSender, registerSenders, registerTestListener, sendExceptionToListener, setDeserializer, setMapper, setNeedsTest, setNoReadErrorOnClose, setSerializer, toString
public TcpNioSSLConnection(SocketChannel socketChannel, boolean server, boolean lookupHost, @Nullable ApplicationEventPublisher applicationEventPublisher, @Nullable String connectionFactoryName, SSLEngine sslEngine)
public void setHandshakeTimeout(int handshakeTimeout)
handshakeTimeout
- the timeout.public SSLSession getSslSession()
getSslSession
in interface TcpConnection
getSslSession
in class TcpNioConnection
SSLSession
associated with this connection, if SSL is in use,
null otherwise.protected void sendToPipe(ByteBuffer networkBuffer) throws IOException
sendToPipe
in class TcpNioConnection
IOException
public void init()
protected org.springframework.integration.ip.tcp.connection.TcpNioConnection.ChannelOutputStream getChannelOutputStream()
getChannelOutputStream
in class TcpNioConnection
protected org.springframework.integration.ip.tcp.connection.TcpNioSSLConnection.SSLChannelOutputStream getSSLChannelOutputStream()
public void close()
TcpConnectionSupport
close
in interface TcpConnection
close
in class TcpNioConnection