You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/04/19 14:10:37 UTC

svn commit: r1095054 - /commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPSClient.java

Author: sebb
Date: Tue Apr 19 12:10:37 2011
New Revision: 1095054

URL: http://svn.apache.org/viewvc?rev=1095054&view=rev
Log:
Javadoc

Modified:
    commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPSClient.java

Modified: commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPSClient.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPSClient.java?rev=1095054&r1=1095053&r2=1095054&view=diff
==============================================================================
--- commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPSClient.java (original)
+++ commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPSClient.java Tue Apr 19 12:10:37 2011
@@ -501,12 +501,12 @@ public class FTPSClient extends FTPClien
 
     /**
      * Send an FTP command.
-     * The CCC (Clear Command Channel) command causes the underlying {@link SSLSocket} instance  to be assigned
-     * to a plain {@link Socket} instances
+     * A successful CCC (Clear Command Channel) command causes the underlying {@link SSLSocket} 
+     * instance to be assigned to a plain {@link Socket}
      * @param command The FTP command.
      * @return server reply.
-     * @throws IOException If an I/O error occurs while sending
-     * the command.
+     * @throws IOException If an I/O error occurs while sending the command.
+     * @throws SSLException if a CCC command fails
      * @see org.apache.commons.net.ftp.FTP#sendCommand(java.lang.String)
      */
     // Would like to remove this method, but that will break any existing clients that are using CCC