Package | Description |
---|---|
org.apache.commons.net.ftp | |
org.apache.commons.net.ftp.parser |
Modifier and Type | Class and Description |
---|---|
class |
DefaultFTPFileListParser
Deprecated.
This class is deprecated as of version 1.2 and will be
removed in version 2.0 -- use the autodetect mechanism in
DefaultFTPFileEntryParserFactory instead.
|
class |
FTPFileEntryParserImpl
This abstract class implements both the older FTPFileListParser and
newer FTPFileEntryParser interfaces with default functionality.
|
class |
FTPFileListParserImpl
Deprecated.
This class is deprecated as of version 1.2 and will be
removed in version 2.0 --
org.apache.commons.net.ftp.RegexFTPFileEntryParserImpl is its
designated replacement. Class has been renamed, entire
implemenation is in RegexFTPFileEntryParserImpl.
|
Modifier and Type | Method and Description |
---|---|
static FTPFileList |
FTPFileList.create(java.io.InputStream stream,
FTPFileEntryParser parser)
Deprecated.
The version of this method which takes an encoding should be used.
|
static FTPFileList |
FTPFileList.create(java.io.InputStream stream,
FTPFileEntryParser parser,
java.lang.String encoding)
Deprecated.
The only way to create an
FTPFileList object. |
FTPFileList |
FTPClient.createFileList(FTPFileEntryParser parser)
Deprecated.
- use initiateListParsing(FTPFileEntryParser) method instead.
|
FTPFileList |
FTPClient.createFileList(java.lang.String pathname,
FTPFileEntryParser parser)
Deprecated.
- use initiateListParsing(String, FTPFileEntryParser)
method instead.
|
FTPFileIterator |
FTPFileList.iterator(FTPFileEntryParser parser)
Deprecated.
create an iterator over this list using the supplied parser
|
Constructor and Description |
---|
FTPListParseEngine(FTPFileEntryParser parser) |
Modifier and Type | Class and Description |
---|---|
class |
CompositeFileEntryParser
This implementation allows to pack some FileEntryParsers together
and handle the case where to returned dirstyle isnt clearly defined.
|
class |
ConfigurableFTPFileEntryParserImpl
To change the template for this generated type comment go to
Window - Preferences - Java - Code Style - Code Templates - Comments
|
class |
EnterpriseUnixFTPEntryParser
Parser for the Connect Enterprise Unix FTP Server From Sterling Commerce.
|
class |
MVSFTPEntryParser
Implementation of FTPFileEntryParser and FTPFileListParser for IBM MVS Systems.
|
class |
NTFTPEntryParser
Implementation of FTPFileEntryParser and FTPFileListParser for NT Systems.
|
class |
OS2FTPEntryParser
Implementation of FTPFileEntryParser and FTPFileListParser for OS2 Systems.
|
class |
OS400FTPEntryParser |
class |
RegexFTPFileEntryParserImpl
This abstract class implements both the older FTPFileListParser and
newer FTPFileEntryParser interfaces with default functionality.
|
class |
UnixFTPEntryParser
Implementation FTPFileEntryParser and FTPFileListParser for standard
Unix Systems.
|
class |
VMSFTPEntryParser
Implementation FTPFileEntryParser and FTPFileListParser for VMS Systems.
|
class |
VMSVersioningFTPEntryParser
Special implementation VMSFTPEntryParser with versioning turned on.
|
Modifier and Type | Method and Description |
---|---|
FTPFileEntryParser |
DefaultFTPFileEntryParserFactory.createFileEntryParser(FTPClientConfig config)
Implementation extracts a key from the supplied
FTPClientConfig
parameter and creates an object implementing the
interface FTPFileEntryParser and uses the supplied configuration
to configure it. |
FTPFileEntryParser |
FTPFileEntryParserFactory.createFileEntryParser(FTPClientConfig config)
Implementation should be a method that extracts
a key from the supplied
FTPClientConfig
parameter and creates an object implementing the
interface FTPFileEntryParser and uses the supplied configuration
to configure it. |
FTPFileEntryParser |
DefaultFTPFileEntryParserFactory.createFileEntryParser(java.lang.String key)
This default implementation of the FTPFileEntryParserFactory
interface works according to the following logic:
First it attempts to interpret the supplied key as a fully
qualified classname of a class implementing the
FTPFileEntryParser interface.
|
FTPFileEntryParser |
FTPFileEntryParserFactory.createFileEntryParser(java.lang.String key)
Implementation should be a method that decodes the
supplied key and creates an object implementing the
interface FTPFileEntryParser.
|
FTPFileEntryParser |
DefaultFTPFileEntryParserFactory.createMVSEntryParser() |
FTPFileEntryParser |
DefaultFTPFileEntryParserFactory.createNTFTPEntryParser() |
FTPFileEntryParser |
DefaultFTPFileEntryParserFactory.createOS2FTPEntryParser() |
FTPFileEntryParser |
DefaultFTPFileEntryParserFactory.createOS400FTPEntryParser() |
FTPFileEntryParser |
DefaultFTPFileEntryParserFactory.createUnixFTPEntryParser() |
FTPFileEntryParser |
DefaultFTPFileEntryParserFactory.createVMSVersioningFTPEntryParser() |
Constructor and Description |
---|
CompositeFileEntryParser(FTPFileEntryParser[] ftpFileEntryParsers) |