Package org.apache.commons.net.ftp
Interface Summary |
Configurable |
This interface adds the aspect of configurability by means of
a supplied FTPClientConfig object to other classes in the
system, especially listing parsers. |
FTPFileEntryParser |
FTPFileEntryParser defines the interface for parsing a single FTP file
listing and converting that information into an
{@link org.apache.commons.net.ftp.FTPFile} instance.
|
FTPFileListParser |
FTPFileListParser defines the interface for parsing FTP file listings
and converting that information into an array of
{@link org.apache.commons.net.ftp.FTPFile} instances.
|
Class Summary |
DefaultFTPFileListParser |
DefaultFTPFileListParser is the default implementation of
{@link org.apache.commons.net.ftp.FTPFileListParser}
used by {@link org.apache.commons.net.ftp.FTPClient}
to parse file listings.
|
FTP |
FTP provides the basic the functionality necessary to implement your
own FTP client. |
FTPClient |
FTPClient encapsulates all the functionality necessary to store and
retrieve files from an FTP server. |
FTPClientConfig |
This class implements an alternate means of configuring the
{@link org.apache.commons.net.ftp.FTPClient FTPClient} object and
also subordinate objects which it uses. |
FTPCommand |
FTPCommand stores a set of constants for FTP command codes. |
FTPConnectionClosedException |
FTPConnectionClosedException is used to indicate the premature or
unexpected closing of an FTP connection resulting from a
{@link org.apache.commons.net.ftp.FTPReply#SERVICE_NOT_AVAILABLE FTPReply.SERVICE_NOT_AVAILABLE }
response (FTP reply code 421) to a
failed FTP command. |
FTPFile |
The FTPFile class is used to represent information about files stored
on an FTP server. |
FTPFileEntryParserImpl |
This abstract class implements both the older FTPFileListParser and
newer FTPFileEntryParser interfaces with default functionality.
|
FTPFileIterator |
This class implements a bidirectional iterator over an FTPFileList.
|
FTPFileList |
This class encapsulates a listing of files from an FTP server. |
FTPFileListParserImpl |
This abstract class implements both the older FTPFileListParser and
newer FTPFileEntryParser interfaces with default functionality.
|
FTPListParseEngine |
This class handles the entire process of parsing a listing of
file entries from the server.
|
FTPReply |
FTPReply stores a set of constants for FTP reply codes. |