Java Code Examples for org.apache.directory.ldap.client.api.LdapConnectionPool#setMaxIdle()

The following examples show how to use org.apache.directory.ldap.client.api.LdapConnectionPool#setMaxIdle() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SingularityLDAPDatastore.java    From Singularity with Apache License 2.0 5 votes vote down vote up
private static LdapConnectionPool createConnectionPool(LDAPConfiguration configuration)
  throws IOException {
  final LdapConnectionConfig config = new LdapConnectionConfig();
  config.setLdapHost(configuration.getHostname());
  config.setLdapPort(configuration.getPort());
  config.setName(configuration.getBindDn());
  config.setCredentials(configuration.getBindPassword());

  final DefaultPoolableLdapConnectionFactory factory = new DefaultPoolableLdapConnectionFactory(
    config
  );

  final LdapConnectionPool pool = new LdapConnectionPool(factory);
  pool.setTestOnBorrow(configuration.isPoolTestOnBorrow());
  pool.setTestOnReturn(configuration.isPoolTestOnReturn());
  pool.setTestWhileIdle(configuration.isPoolTestWhileIdle());

  pool.setMaxActive(configuration.getPoolMaxActive());
  pool.setMaxIdle(configuration.getPoolMaxIdle());
  pool.setMinIdle(configuration.getPoolMinIdle());
  pool.setMaxWait(configuration.getPoolMaxWait());

  switch (configuration.getPoolWhenExhaustedAction()) {
    case BLOCK:
      pool.setWhenExhaustedAction(LdapConnectionPool.WHEN_EXHAUSTED_BLOCK);
      break;
    case FAIL:
      pool.setWhenExhaustedAction(LdapConnectionPool.WHEN_EXHAUSTED_FAIL);
      break;
    case GROW:
      pool.setWhenExhaustedAction(LdapConnectionPool.WHEN_EXHAUSTED_GROW);
      break;
    default:
      pool.setWhenExhaustedAction(LdapConnectionPool.DEFAULT_WHEN_EXHAUSTED_ACTION);
  }

  return pool;
}