Uses of Interface
org.apache.commons.vfs2.provider.ftp.FtpClient
-
Packages that use FtpClient Package Description org.apache.commons.vfs2.provider.ftp The FTP File Provider. -
-
Uses of FtpClient in org.apache.commons.vfs2.provider.ftp
Classes in org.apache.commons.vfs2.provider.ftp that implement FtpClient Modifier and Type Class Description class
FTPClientWrapper
A wrapper to the FTPClient to allow automatic reconnect on connection loss.Fields in org.apache.commons.vfs2.provider.ftp declared as FtpClient Modifier and Type Field Description private FtpClient
FtpFileObject.FtpInputStream. client
private FtpClient
FtpFileObject.FtpOutputStream. client
Fields in org.apache.commons.vfs2.provider.ftp with type parameters of type FtpClient Modifier and Type Field Description private java.util.concurrent.atomic.AtomicReference<FtpClient>
FtpFileSystem. idleClient
Methods in org.apache.commons.vfs2.provider.ftp that return FtpClient Modifier and Type Method Description FtpClient
FtpFileSystem. getClient()
Creates an FTP client to use.Methods in org.apache.commons.vfs2.provider.ftp with parameters of type FtpClient Modifier and Type Method Description 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.vfs2.provider.ftp with parameters of type FtpClient Constructor Description FtpFileSystem(GenericFileName rootName, FtpClient ftpClient, FileSystemOptions fileSystemOptions)
FtpInputStream(FtpClient client, java.io.InputStream in)
FtpInputStream(FtpClient client, java.io.InputStream in, int bufferSize)
FtpOutputStream(FtpClient client, java.io.OutputStream outstr)
-