1 2 package ch.ethz.ssh2; 3 4 10 11 public class SFTPv3FileHandle 12 { 13 final SFTPv3Client client; 14 final byte[] fileHandle; 15 boolean isClosed = false; 16 17 18 19 SFTPv3FileHandle(SFTPv3Client client, byte[] h) 20 { 21 this.client = client; 22 this.fileHandle = h; 23 } 24 25 30 public SFTPv3Client getClient() 31 { 32 return client; 33 } 34 35 41 public boolean isClosed() 42 { 43 return isClosed; 44 } 45 } 46 | Popular Tags |