diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2014-06-30 23:03:24 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2014-06-30 23:03:24 +0200 |
| commit | 779e56aed456973de59b0ced6b74f83d70a8dea2 (patch) | |
| tree | 1b53f7994fb93dc5be0158e2742c1dec78c6df16 | |
| parent | 259b6a003e431580c2c7cebf1c192bdef8aae21a (diff) | |
Implements new LookupManager interface
| -rw-r--r-- | src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java b/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java index faf8dab..e0fa4c1 100644 --- a/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java +++ b/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java @@ -20,7 +20,7 @@ import com.c2kernel.lookup.AgentPath; import com.c2kernel.lookup.DomainPath;
import com.c2kernel.lookup.InvalidItemPathException;
import com.c2kernel.lookup.ItemPath;
-import com.c2kernel.lookup.Lookup;
+import com.c2kernel.lookup.LookupManager;
import com.c2kernel.lookup.Path;
import com.c2kernel.lookup.RolePath;
import com.c2kernel.process.Gateway;
@@ -50,7 +50,7 @@ import com.novell.ldap.LDAPSearchResults; * @author $Author: abranson $
*/
-public class LDAPLookup implements Lookup
+public class LDAPLookup implements LookupManager
{
private LDAPAuthManager mLDAPAuth;
|
