Interface ScpClient
-
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
ScpClientImpl
public interface ScpClient extends AutoCloseable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddownload(String remote, String local)voidupload(String local, String remote)-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Method Detail
-
upload
void upload(String local, String remote) throws IOException
- Throws:
IOException
-
download
void download(String remote, String local) throws IOException
- Throws:
IOException
-
-