From 7a48019d3c9c5dbf4c10d19065d8b790ce71f55d Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Sat, 18 Jul 2015 08:57:06 +0200 Subject: Support timeout for LDAP connections with LDAP.timeOut property --- src/main/java/com/c2kernel/lookup/LDAPProperties.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main/java/com/c2kernel/lookup/LDAPProperties.java') diff --git a/src/main/java/com/c2kernel/lookup/LDAPProperties.java b/src/main/java/com/c2kernel/lookup/LDAPProperties.java index a9ae699..19141f5 100644 --- a/src/main/java/com/c2kernel/lookup/LDAPProperties.java +++ b/src/main/java/com/c2kernel/lookup/LDAPProperties.java @@ -24,6 +24,7 @@ public class LDAPProperties public String mPassword = null; public static String mGeneratedPassword = null; public String mDbPath = null; + public int mTimeOut = 0; public LDAPProperties() { @@ -35,6 +36,7 @@ public class LDAPProperties mUser = Gateway.getProperty( "LDAP.user" ); mPassword = Gateway.getProperty( "LDAP.password" ); mDbPath = Gateway.getProperty( "LDAP.dbPath" ); + mTimeOut = Integer.valueOf(Gateway.getProperty( "LDAP.timeOut", "0")); mRootPath += "," + mGlobalPath; mLocalPath += "," + mRootPath; -- cgit v1.2.3