Uses of Class
com.enterprisedt.net.ftp.FileTransferInputStream

Packages that use FileTransferInputStream
com.enterprisedt.net.ftp Contains classes that add support for secure file transfers via the SFTP and FTPS protocols, as well as advanced FTP features such as connection pooling and asynchronous methods. 
com.enterprisedt.net.ftp.async This package contains the classes used for asynchronous programming - primarily the XXXResult classes, which are returned from asynchronous methods and used to provide details about the operation, such as what file is being transferred. 
com.enterprisedt.net.ftp.ssh Contains classes for SFTP (FTP via SSH) client functionality. 
 

Uses of FileTransferInputStream in com.enterprisedt.net.ftp
 

Subclasses of FileTransferInputStream in com.enterprisedt.net.ftp
 class FTPInputStream
          Represents an input stream of bytes coming from an FTP server, permitting the user to download a file by reading the stream.
 

Methods in com.enterprisedt.net.ftp that return FileTransferInputStream
 FileTransferInputStream SecureFileTransferClient.downloadStream(java.lang.String remoteFileName)
          Download a file from the FTP server as a stream.
 FileTransferInputStream FileTransferClientInterface.downloadStream(java.lang.String remoteFileName)
          Download a file from the FTP server as a stream.
 FileTransferInputStream FileTransferClient.downloadStream(java.lang.String remoteFileName)
          Download a file from the FTP server as a stream.
static FileTransferInputStream SecureFileTransferClient.downloadURLStream(java.lang.String ftpURL)
          Open an InputStream for the given FTP URL.
static FileTransferInputStream FileTransferClient.downloadURLStream(java.lang.String ftpURL)
          Open an InputStream for the given FTP URL.
 

Uses of FileTransferInputStream in com.enterprisedt.net.ftp.async
 

Methods in com.enterprisedt.net.ftp.async that return FileTransferInputStream
 FileTransferInputStream DownloadStreamResult.getInputStream()
          Get the input stream from which to read the file from the server
 

Methods in com.enterprisedt.net.ftp.async with parameters of type FileTransferInputStream
 void AsyncCallback.DownloadStream.onDownloadingStream(FileTransferInputStream inStr, DownloadStreamResult result)
           
 void DownloadStreamResult.setInputStream(FileTransferInputStream str)
          Set the input stream.
 

Uses of FileTransferInputStream in com.enterprisedt.net.ftp.ssh
 

Subclasses of FileTransferInputStream in com.enterprisedt.net.ftp.ssh
 class SSHFTPInputStream
          Represents an input stream of bytes coming from an SFTP server, permitting the user to download a file by reading the stream.
 



Copyright © 2001-2011 Enterprise Distributed Technologies Ltd. All Rights Reserved.