[exo-jcr-commits] exo-jcr SVN: r4465 - core/branches/2.3.x/exo.core.component.ldap/src/main/java/org/exoplatform/services/ldap/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue May 31 10:59:54 EDT 2011


Author: areshetnyak
Date: 2011-05-31 10:59:54 -0400 (Tue, 31 May 2011)
New Revision: 4465

Modified:
   core/branches/2.3.x/exo.core.component.ldap/src/main/java/org/exoplatform/services/ldap/impl/LDAPServiceImpl.java
Log:
EXOJCR-1366 : The patch COR-237.patch was approved and comitted.

Modified: core/branches/2.3.x/exo.core.component.ldap/src/main/java/org/exoplatform/services/ldap/impl/LDAPServiceImpl.java
===================================================================
--- core/branches/2.3.x/exo.core.component.ldap/src/main/java/org/exoplatform/services/ldap/impl/LDAPServiceImpl.java	2011-05-31 14:49:05 UTC (rev 4464)
+++ core/branches/2.3.x/exo.core.component.ldap/src/main/java/org/exoplatform/services/ldap/impl/LDAPServiceImpl.java	2011-05-31 14:59:54 UTC (rev 4465)
@@ -86,6 +86,17 @@
       // TODO move it in configuration ?
       env.put("com.sun.jndi.ldap.connect.timeout", "60000");
 
+      if (config.getMinConnection() > 0)
+      {
+         env.put("com.sun.jndi.ldap.connect.pool.initsize", Integer.toString(config.getMinConnection()));
+         env.put("com.sun.jndi.ldap.connect.pool.prefsize", Integer.toString(config.getMinConnection()));
+      }
+
+      if (config.getMaxConnection() > 0)
+      {
+         env.put("com.sun.jndi.ldap.connect.pool.maxsize", Integer.toString(config.getMaxConnection()));
+      }
+
       env.put("com.sun.jndi.ldap.connect.pool", "true");
       env.put("java.naming.ldap.version", config.getVerion());
       env.put("java.naming.ldap.attributes.binary", "tokenGroups");



More information about the exo-jcr-commits mailing list