diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2014-09-09 14:09:44 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2014-09-09 14:09:44 +0200 |
| commit | d2660e10d972e236dabd26560950400e4e02bf32 (patch) | |
| tree | f75f4f0629cf0f5a9dd1e2acaf95136438636e9e /src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java | |
| parent | 3a66087e65f71effdeb4feef83db4fc6910f550c (diff) | |
| parent | bbd89b565324f8c58ef812398ff2a9e378b7038f (diff) | |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java')
| -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 96fe82b..96ab609 100644 --- a/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java +++ b/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java @@ -51,26 +51,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;
|
