Mercurial > 510Connectbot
view src/ch/ethz/ssh2/SFTPv6DirectoryEntry.java @ 395:74d527fe7f5f stable-1.9.0.6
bump version number
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 19 Sep 2014 12:29:30 -0700 |
parents | 91a31873c42a |
children |
line wrap: on
line source
package ch.ethz.ssh2; /** * @version $Id: SFTPv6DirectoryEntry.java 151 2014-04-28 10:03:39Z dkocher@sudo.ch $ */ public class SFTPv6DirectoryEntry implements SFTPDirectoryEntry { /** * A relative name within the directory, without any path components. */ public String filename; /** * The attributes of this entry. */ public SFTPv6FileAttributes attributes; public String getFilename() { return filename; } public SFTPv6FileAttributes getAttributes() { return attributes; } @Override public String toString() { final StringBuilder sb = new StringBuilder("SFTPv6DirectoryEntry{"); sb.append("filename='").append(filename).append('\''); sb.append(", attributes=").append(attributes); sb.append('}'); return sb.toString(); } }