Author: sebb
Date: Sat Jul 10 12:48:22 2010
New Revision: 962836

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

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

Modified: 
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPSClient.java
URL: 
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPSClient.java?rev=962836&r1=962835&r2=962836&view=diff
==============================================================================
--- 
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPSClient.java
 (original)
+++ 
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPSClient.java
 Sat Jul 10 12:48:22 2010
@@ -385,8 +385,8 @@ public class FTPSClient extends FTPClien
     /**
      * Returns the names of the cipher suites which could be enabled
      * for use on this connection.
-     * When the underlying {...@link Socket} is not an {...@link SSLSocket} 
instance, returns false.
-     * @return An array of cipher suite names.
+     * When the underlying {...@link Socket} is not an {...@link SSLSocket} 
instance, returns null.
+     * @return An array of cipher suite names, or <code>null</code>
      */
     public String[] getEnabledCipherSuites() {
         if (_socket_ instanceof SSLSocket)
@@ -407,8 +407,8 @@ public class FTPSClient extends FTPClien
     /**
      * Returns the names of the protocol versions which are currently
      * enabled for use on this connection.
-     * When the underlying {...@link Socket} is not an {...@link SSLSocket} 
instance, returns false.
-     * @return An array of protocols.
+     * When the underlying {...@link Socket} is not an {...@link SSLSocket} 
instance, returns null.
+     * @return An array of protocols, or <code>null</code>
      */
     public String[] getEnabledProtocols() {
         if (_socket_ instanceof SSLSocket)


Reply via email to