Spring Integration

org.springframework.integration.ip.tcp.connection.support
Interface TcpSocketFactorySupport

All Known Implementing Classes:
DefaultTcpNetSocketFactorySupport, DefaultTcpNetSSLSocketFactorySupport

public interface TcpSocketFactorySupport

Strategy interface for supplying Socket Factories.

Since:
2.2
Author:
Gary Russell

Method Summary
 javax.net.ServerSocketFactory getServerSocketFactory()
          Supplies the ServerSocketFactory to be used to create new ServerSockets.
 javax.net.SocketFactory getSocketFactory()
          Supplies the SocketFactory to be used to create new Sockets.
 

Method Detail

getServerSocketFactory

javax.net.ServerSocketFactory getServerSocketFactory()
Supplies the ServerSocketFactory to be used to create new ServerSockets.

Returns:
the ServerSocketFacory

getSocketFactory

javax.net.SocketFactory getSocketFactory()
Supplies the SocketFactory to be used to create new Sockets.

Returns:
the SocketFactory

Spring Integration