use of com.dexels.navajo.resource.sftp.SFTPResource in project navajo by Dexels.
the class SFTPResourceTest method testSFTP.
@Test
@Ignore
public void testSFTP() throws MappableException, UserException, IOException {
SFTPResource res = SFTPResourceFactory.getInstance().getHttpResource("test");
Binary b = new Binary(getClass().getResourceAsStream("logo.gif"));
res.send("/share", "monkey2.gif", b);
}
Aggregations