Class DefaultTcpSocketSupport
java.lang.Object
org.springframework.integration.ip.tcp.connection.DefaultTcpSocketSupport
- All Implemented Interfaces:
- TcpSocketSupport
Default implementation of 
TcpSocketSupport; makes no
 changes to sockets.- Since:
- 2.2
- Author:
- Gary Russell
- 
Constructor SummaryConstructorsConstructorDescriptionConstruct an instance with host verification enabled.DefaultTcpSocketSupport(boolean sslVerifyHost) Construct an instance with the provided sslVerifyHost.
- 
Method SummaryModifier and TypeMethodDescriptionvoidpostProcessServerSocket(ServerSocket serverSocket) No-Op.voidpostProcessSocket(Socket socket) Enables host verification for SSL, if so configured.
- 
Constructor Details- 
DefaultTcpSocketSupportpublic DefaultTcpSocketSupport()Construct an instance with host verification enabled.
- 
DefaultTcpSocketSupportpublic DefaultTcpSocketSupport(boolean sslVerifyHost) Construct an instance with the provided sslVerifyHost.- Parameters:
- sslVerifyHost- true to verify host during SSL handshake.
- Since:
- 5.0.8.
 
 
- 
- 
Method Details- 
postProcessServerSocketNo-Op.- Specified by:
- postProcessServerSocketin interface- TcpSocketSupport
- Parameters:
- serverSocket- The ServerSocket
 
- 
postProcessSocketEnables host verification for SSL, if so configured.- Specified by:
- postProcessSocketin interface- TcpSocketSupport
- Parameters:
- socket- The Socket
 
 
-