Uses of Interface
org.apache.commons.vfs.provider.ftp.FtpClient

Packages that use FtpClient
org.apache.commons.vfs.provider.ftp The FTP File Provider. 
 

Uses of FtpClient in org.apache.commons.vfs.provider.ftp
 

Classes in org.apache.commons.vfs.provider.ftp that implement FtpClient
(package private)  class FTPClientWrapper
          A wrapper to the FTPClient to allow automatic reconnect on connection loss.
I decided to not to use eg.
 

Fields in org.apache.commons.vfs.provider.ftp declared as FtpClient
private  FtpClient FtpFileObject.FtpInputStream.client
           
private  FtpClient FtpFileObject.FtpOutputStream.client
           
private  FtpClient FtpFileSystem.idleClient
           
 

Methods in org.apache.commons.vfs.provider.ftp that return FtpClient
 FtpClient FtpFileSystem.getClient()
          Creates an FTP client to use.
 

Methods in org.apache.commons.vfs.provider.ftp with parameters of type FtpClient
private  void FtpFileSystem.closeConnection(FtpClient client)
          Cleans up the connection to the server.
 void FtpFileSystem.putClient(FtpClient client)
          Returns an FTP client after use.
 

Constructors in org.apache.commons.vfs.provider.ftp with parameters of type FtpClient
FtpFileObject.FtpInputStream(FtpClient client, java.io.InputStream in)
           
FtpFileObject.FtpOutputStream(FtpClient client, java.io.OutputStream outstr)
           
FtpFileSystem(GenericFileName rootName, FtpClient ftpClient, FileSystemOptions fileSystemOptions)