You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2007/10/20 00:35:55 UTC

svn commit: r586634 - /directory/apacheds/branches/bigbang/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapServer.java

Author: elecharny
Date: Fri Oct 19 15:35:52 2007
New Revision: 586634

URL: http://svn.apache.org/viewvc?rev=586634&view=rev
Log:
The BindHanlder now takes two parameters : the directoryService and the SessionRegistry

Modified:
    directory/apacheds/branches/bigbang/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapServer.java

Modified: directory/apacheds/branches/bigbang/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapServer.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapServer.java?rev=586634&r1=586633&r2=586634&view=diff
==============================================================================
--- directory/apacheds/branches/bigbang/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapServer.java (original)
+++ directory/apacheds/branches/bigbang/protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapServer.java Fri Oct 19 15:35:52 2007
@@ -266,7 +266,7 @@
         
         if ( getBindHandler() == null )
         {
-            setBindHandler( new DefaultBindHandler() );
+            setBindHandler( new DefaultBindHandler( getDirectoryService(), registry ) );
         }
         
         if ( getCompareHandler() == null )