1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.commons.net.ftp;
17 import org.apache.commons.net.ftp.parser.UnixFTPEntryParser;
18
19 /**
20 * DefaultFTPFileListParser is the default implementation of
21 * {@link org.apache.commons.net.ftp.FTPFileListParser}
22 * used by {@link org.apache.commons.net.ftp.FTPClient}
23 * to parse file listings.
24 * Sometimes you will want to parse unusual listing formats, in which
25 * case you would create your own implementation of FTPFileListParser and
26 * if necessary, subclass FTPFile.
27 * <p>
28 * As of version 1.2, this class merely extends UnixFTPEntryParser.
29 * It will be removed in version 2.0.
30 * <p>
31 * @author Daniel F. Savarese
32 * @see FTPFileListParser
33 * @see FTPFile
34 * @see FTPClient#listFiles
35 * @see org.apache.commons.net.ftp.parser.DefaultFTPFileEntryParserFactory
36 * @deprecated This class is deprecated as of version 1.2 and will be
37 * removed in version 2.0 -- use the autodetect mechanism in
38 * DefaultFTPFileEntryParserFactory instead.
39 */
40 public final class DefaultFTPFileListParser extends UnixFTPEntryParser
41 {
42
43
44
45 }