view src/ch/ethz/ssh2/SFTPFileAttributes.java @ 392:7ac1a0b02f44
add test buffer changed when input stream runs dry, similar to async test
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Tue, 16 Sep 2014 16:22:41 -0700 (2014-09-16) |
parents |
91a31873c42a |
children |
|
line source
package ch.ethz.ssh2;
/**
* @version $Id: SFTPFileAttributes.java 151 2014-04-28 10:03:39Z dkocher@sudo.ch $
*/
public interface SFTPFileAttributes {
boolean isDirectory();
boolean isRegularFile();
boolean isSymlink();
byte[] toBytes();
}