use of com.dexels.navajo.resource.sftp.SFTPResourceMap in project navajo by Dexels.
the class SFTPResourceTest method testSFTPResourceMap.
@Test
@Ignore
public void testSFTPResourceMap() throws MappableException, UserException {
SFTPResourceMap sf = new SFTPResourceMap();
sf.load(new Access());
sf.setResource("test");
sf.setPath("/share");
sf.setFilename("monkey.gif");
Binary b = new Binary(getClass().getResourceAsStream("logo.gif"));
sf.setContent(b);
sf.store();
}
Aggregations