From bbd89b565324f8c58ef812398ff2a9e378b7038f Mon Sep 17 00:00:00 2001 From: ogattaz Date: Thu, 24 Jul 2014 10:27:35 +0200 Subject: set protected the new memeber "ldapProps" --- .../java/com/c2kernel/lookup/ldap/LDAPLookup.java | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java b/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java index 372a91c..24fcc78 100644 --- a/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java +++ b/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java @@ -50,26 +50,28 @@ import com.novell.ldap.LDAPSearchResults; * @author $Author: abranson $ */ -public class LDAPLookup implements LookupManager - -{ +public class LDAPLookup implements LookupManager{ + protected LDAPAuthManager mLDAPAuth; protected LDAPPropertyManager mPropManager; - + protected LDAPProperties ldapProps; + private String mGlobalPath, mRootPath, mLocalPath, mRolePath, mItemTypeRoot, mDomainTypeRoot; - LDAPProperties ldapProps; + /** + * + */ public LDAPLookup() { + super(); } - /** * Initializes the DN paths from the Root, global and local paths supplied by the LDAP properties. * @param props */ - protected void initPaths(LDAPProperties props) - { - Logger.msg(8,"LDAPLookup - initialising."); + protected void initPaths(LDAPProperties props){ + + Logger.msg(8,"LDAPLookup.initPaths(): - initialising with LDAPProperties"); ldapProps = props; mGlobalPath=props.mGlobalPath; -- cgit v1.2.3