Author: ggregory
Date: Sun Feb 18 20:28:39 2018
New Revision: 1824705
URL: http://svn.apache.org/viewvc?rev=1824705&view=rev
Log:
Javadoc.
Modified:
commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpClientFactory.java
Modified:
commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpClientFactory.java
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpClientFactory.java?rev=1824705&r1=1824704&r2=1824705&view=diff
==============================================================================
---
commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpClientFactory.java
(original)
+++
commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpClientFactory.java
Sun Feb 18 20:28:39 2018
@@ -76,7 +76,14 @@ public final class FtpClientFactory {
}
}
- /** Abstract Factory, used to configure different FTPClients. */
+ /**
+ * Abstract Factory, used to configure different FTPClients.
+ *
+ * @param <C>
+ * The type of FTPClient.
+ * @param <B>
+ * The type of FtpFileSystemConfigBuilder
+ */
public abstract static class ConnectionFactory<C extends FTPClient, B
extends FtpFileSystemConfigBuilder> {
private static final char[] ANON_CHAR_ARRAY =
"anonymous".toCharArray();
private static final int BUFSZ = 40;