summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorogattaz <olivier@gattaz.com>2014-07-24 10:27:35 +0200
committerogattaz <olivier@gattaz.com>2014-07-24 10:27:35 +0200
commitbbd89b565324f8c58ef812398ff2a9e378b7038f (patch)
tree41f526cd907db14680813a6dbd4fc1693f030dea
parentc58aff0580096990b747c990dc003ef6222de72f (diff)
set protected the new memeber "ldapProps"
-rw-r--r--src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java20
1 files 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;