diff options
| author | ogattaz <olivier@gattaz.com> | 2014-07-24 10:27:35 +0200 |
|---|---|---|
| committer | ogattaz <olivier@gattaz.com> | 2014-07-24 10:27:35 +0200 |
| commit | bbd89b565324f8c58ef812398ff2a9e378b7038f (patch) | |
| tree | 41f526cd907db14680813a6dbd4fc1693f030dea | |
| parent | c58aff0580096990b747c990dc003ef6222de72f (diff) | |
set protected the new memeber "ldapProps"
| -rw-r--r-- | src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java | 20 |
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;
|
