view src/ch/ethz/ssh2/SFTPFileAttributes.java @ 378:4d5cb1e185e1
remove redundancy from makefile
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Mon, 04 Aug 2014 15:02:05 -0700 (2014-08-04) |
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();
}