You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by kr...@apache.org on 2008/05/16 12:01:51 UTC

svn commit: r656994 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/TestConfiguration.java

Author: kristwaa
Date: Fri May 16 03:01:51 2008
New Revision: 656994

URL: http://svn.apache.org/viewvc?rev=656994&view=rev
Log:
Fixed incorrect JavaDoc for TestConfiguration constructor taking SSL mode argument.
Patch file: n/a

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/TestConfiguration.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/TestConfiguration.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/TestConfiguration.java?rev=656994&r1=656993&r2=656994&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/TestConfiguration.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/TestConfiguration.java Fri May 16 03:01:51 2008
@@ -994,10 +994,14 @@
     }
 
     /**
-     * Obtain a new configuration identical to the passed in
-     * one except for the default user and password.
-     * @param copy Configuration to copy.
-     * @param ssl New default ssl mode
+     * Obtains a new configuration identical to the passed in one, except for
+     * the default SSL mode.
+     * <p>
+     * The modes supported at moment are <tt>basic</tt> and <tt>off</tt>.
+     * The mode <tt>peerAuthentication</tt> is not yet supported.
+     *
+     * @param copy configuration to copy
+     * @param ssl default SSL mode
      */
     TestConfiguration(TestConfiguration copy, String ssl)
     {