Uses of Interface
org.apache.commons.net.ftp.FTPFileEntryParser
Packages that use FTPFileEntryParser
Package
Description
FTP and FTPS support classes
FTP file listing parser classes
-
Uses of FTPFileEntryParser in org.apache.commons.net.ftp
Classes in org.apache.commons.net.ftp that implement FTPFileEntryParserModifier and TypeClassDescriptionclass
This abstract class implements both the older FTPFileListParser and newer FTPFileEntryParser interfaces with default functionality.Fields in org.apache.commons.net.ftp declared as FTPFileEntryParserModifier and TypeFieldDescriptionprivate FTPFileEntryParser
FTPClient.entryParser
private final FTPFileEntryParser
FTPListParseEngine.parser
Methods in org.apache.commons.net.ftp that return FTPFileEntryParserModifier and TypeMethodDescription(package private) FTPFileEntryParser
FTPClient.getEntryParser()
Methods in org.apache.commons.net.ftp with parameters of type FTPFileEntryParserModifier and TypeMethodDescriptionprivate FTPListParseEngine
FTPClient.initiateListParsing
(FTPFileEntryParser parser, String pathname) private method through which all listFiles() and initiateListParsing methods pass once a parser is determined.Constructors in org.apache.commons.net.ftp with parameters of type FTPFileEntryParserModifierConstructorDescriptionFTPListParseEngine
(FTPFileEntryParser parser) (package private)
FTPListParseEngine
(FTPFileEntryParser parser, FTPClientConfig configuration) Intended for use by FTPClient only -
Uses of FTPFileEntryParser in org.apache.commons.net.ftp.parser
Classes in org.apache.commons.net.ftp.parser that implement FTPFileEntryParserModifier and TypeClassDescriptionclass
This implementation allows to pack some FileEntryParsers together and handle the case where to returned dirstyle isnt clearly defined.class
This abstract class implements the common timestamp parsing algorithm for all the concrete parsers.class
Parser for the Connect Enterprise Unix FTP Server From Sterling Commerce.class
Implementation FTPFileEntryParser and FTPFileListParser for pre MacOS-X Systems.class
Parser class for MSLT and MLSD replies.class
Implementation of FTPFileEntryParser and FTPFileListParser for IBM zOS/MVS Systems.class
Implementation of FTPFileEntryParser and FTPFileListParser for Netware Systems.class
Implementation of FTPFileEntryParser and FTPFileListParser for NT Systems.class
Implementation of FTPFileEntryParser and FTPFileListParser for OS2 Systems.class
Example *FILE/*MEM FTP entries, when the current working directory is a file of file system QSYS: ------------------------------------------------ $ cwd /qsys.lib/rpgunit.lib/rpgunitc1.file 250-NAMEFMT set to 1.class
This abstract class implements both the older FTPFileListParser and newer FTPFileEntryParser interfaces with default functionality.class
Implementation FTPFileEntryParser and FTPFileListParser for standard Unix Systems.class
Implementation FTPFileEntryParser and FTPFileListParser for VMS Systems.class
Special implementation VMSFTPEntryParser with versioning turned on.Fields in org.apache.commons.net.ftp.parser declared as FTPFileEntryParserModifier and TypeFieldDescriptionprivate FTPFileEntryParser
CompositeFileEntryParser.cachedFtpFileEntryParser
private final FTPFileEntryParser[]
CompositeFileEntryParser.ftpFileEntryParsers
Methods in org.apache.commons.net.ftp.parser that return FTPFileEntryParserModifier and TypeMethodDescriptionDefaultFTPFileEntryParserFactory.createFileEntryParser
(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 (default package is not allowed) of a class implementing the FTPFileEntryParser interface.private FTPFileEntryParser
DefaultFTPFileEntryParserFactory.createFileEntryParser
(String key, FTPClientConfig config) DefaultFTPFileEntryParserFactory.createFileEntryParser
(FTPClientConfig config) Implementation extracts a key from the suppliedFTPClientConfig
parameter and creates an object implementing the interface FTPFileEntryParser and uses the supplied configuration to configure it.FTPFileEntryParserFactory.createFileEntryParser
(String key) Implementation should be a method that decodes the supplied key and creates an object implementing the interface FTPFileEntryParser.FTPFileEntryParserFactory.createFileEntryParser
(FTPClientConfig config) Implementation should be a method that extracts a key from the suppliedFTPClientConfig
parameter and creates an object implementing the interface FTPFileEntryParser and uses the supplied configuration to configure it.DefaultFTPFileEntryParserFactory.createMVSEntryParser()
DefaultFTPFileEntryParserFactory.createNetwareFTPEntryParser()
DefaultFTPFileEntryParserFactory.createNTFTPEntryParser()
private FTPFileEntryParser
DefaultFTPFileEntryParserFactory.createNTFTPEntryParser
(FTPClientConfig config) Creates an NT FTP parser: if the config exists, and the system key equalsFTPClientConfig.SYST_NT
then a plainNTFTPEntryParser
is used, otherwise a composite ofNTFTPEntryParser
andUnixFTPEntryParser
is used.DefaultFTPFileEntryParserFactory.createOS2FTPEntryParser()
DefaultFTPFileEntryParserFactory.createOS400FTPEntryParser()
private FTPFileEntryParser
DefaultFTPFileEntryParserFactory.createOS400FTPEntryParser
(FTPClientConfig config) Creates an OS400 FTP parser: if the config exists, and the system key equalsFTPClientConfig.SYST_OS400
then a plainOS400FTPEntryParser
is used, otherwise a composite ofOS400FTPEntryParser
andUnixFTPEntryParser
is used.DefaultFTPFileEntryParserFactory.createUnixFTPEntryParser()
DefaultFTPFileEntryParserFactory.createVMSVersioningFTPEntryParser()
Constructors in org.apache.commons.net.ftp.parser with parameters of type FTPFileEntryParser