summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/lookup/LDAPProperties.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/c2kernel/lookup/LDAPProperties.java')
-rw-r--r--src/main/java/com/c2kernel/lookup/LDAPProperties.java2
1 files changed, 2 insertions, 0 deletions
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;