You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ka...@apache.org on 2010/11/01 18:04:44 UTC

svn commit: r1029749 - /directory/apacheds/trunk/server-config/src/main/java/org/apache/directory/server/config/beans/DirectoryServiceBean.java

Author: kayyagari
Date: Mon Nov  1 17:04:43 2010
New Revision: 1029749

URL: http://svn.apache.org/viewvc?rev=1029749&view=rev
Log:
o turn off password hiding by default

Modified:
    directory/apacheds/trunk/server-config/src/main/java/org/apache/directory/server/config/beans/DirectoryServiceBean.java

Modified: directory/apacheds/trunk/server-config/src/main/java/org/apache/directory/server/config/beans/DirectoryServiceBean.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/server-config/src/main/java/org/apache/directory/server/config/beans/DirectoryServiceBean.java?rev=1029749&r1=1029748&r2=1029749&view=diff
==============================================================================
--- directory/apacheds/trunk/server-config/src/main/java/org/apache/directory/server/config/beans/DirectoryServiceBean.java (original)
+++ directory/apacheds/trunk/server-config/src/main/java/org/apache/directory/server/config/beans/DirectoryServiceBean.java Mon Nov  1 17:04:43 2010
@@ -50,7 +50,7 @@ public class DirectoryServiceBean extend
     private int dsMaxPDUSize = 2048;
 
     /** The flag that tells if the password should be returned as a normal attribute or not */
-    private boolean dsPasswordHidden = true;
+    private boolean dsPasswordHidden = false;
 
     /** The delay between two flushes on disk */
     private long dsSyncPeriodMillis = 15000L;