Package com.jcraft.jsch
Interface SocketFactory
-
public interface SocketFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Socket
createSocket(String host, int port)
InputStream
getInputStream(Socket socket)
OutputStream
getOutputStream(Socket socket)
-
-
-
Method Detail
-
createSocket
Socket createSocket(String host, int port) throws IOException, UnknownHostException
- Throws:
IOException
UnknownHostException
-
getInputStream
InputStream getInputStream(Socket socket) throws IOException
- Throws:
IOException
-
getOutputStream
OutputStream getOutputStream(Socket socket) throws IOException
- Throws:
IOException
-
-