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 km...@apache.org on 2006/03/20 02:39:21 UTC

svn commit: r387101 - /db/derby/code/trunk/java/client/org/apache/derby/jdbc/ClientBaseDataSource.java

Author: kmarsden
Date: Sun Mar 19 17:39:20 2006
New Revision: 387101

URL: http://svn.apache.org/viewcvs?rev=387101&view=rev
Log:
DERBY-962 Upgrade default security mechanism in client to use encrypted userid password if client can support it.

Fix some residual javadoc issues

Contributed by Sunitha Kambhampati


Modified:
    db/derby/code/trunk/java/client/org/apache/derby/jdbc/ClientBaseDataSource.java

Modified: db/derby/code/trunk/java/client/org/apache/derby/jdbc/ClientBaseDataSource.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/client/org/apache/derby/jdbc/ClientBaseDataSource.java?rev=387101&r1=387100&r2=387101&view=diff
==============================================================================
--- db/derby/code/trunk/java/client/org/apache/derby/jdbc/ClientBaseDataSource.java (original)
+++ db/derby/code/trunk/java/client/org/apache/derby/jdbc/ClientBaseDataSource.java Sun Mar 19 17:39:20 2006
@@ -56,7 +56,7 @@
     // (encrypted userid and password) security mechanism
     // this information is needed to decide if security mechanism 
     // can be upgraded to EUSRIDPWD or not
-    // @see getUpgradedSecurityMechanism()
+    // See getUpgradedSecurityMechanism()
     static boolean SUPPORTS_EUSRIDPWD = false;
     
     static
@@ -807,7 +807,7 @@
      * return the security mechanism 
      * if security mechanism has not been set explicitly on datasource
      * then upgrade the security mechanism to a more secure one if possible
-     * @see #getUpgradedSecurityMechanism()
+     * @see #getUpgradedSecurityMechanism(String)
      * @return the security mechanism
      */
     public short getSecurityMechanism() {
@@ -819,7 +819,7 @@
      * if security mechanism has not been set explicitly on datasource
      * then upgrade the security mechanism to a more secure one if possible
      * @param password  password of user
-     * @see #getUpgradedSecurityMechanism()
+     * @see #getUpgradedSecurityMechanism(String)
      * @return the security mechanism
      */
     public short getSecurityMechanism(String password) {