summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java')
-rw-r--r--src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java b/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java
index a96a46b..10c1830 100644
--- a/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java
+++ b/src/main/java/com/c2kernel/lookup/ldap/LDAPLookup.java
@@ -55,7 +55,6 @@ public class LDAPLookup implements Lookup
{
private LDAPAuthManager mLDAPAuth;
- private LDAPNextKeyManager mNextKeyManager;
private LDAPPropertyManager mPropManager;
final String mItemTypeRoot, mDomainTypeRoot, mGlobalPath, mRootPath, mLocalPath, mRolePath;
@@ -87,22 +86,11 @@ public class LDAPLookup implements Lookup
@Override
public void open(Authenticator auth) {
mLDAPAuth = (LDAPAuthManager)auth;
- mNextKeyManager = new LDAPNextKeyManager(mLDAPAuth, "cn=last,"+mItemTypeRoot);
- Gateway.getProperties().setProperty("NextKeyManager", mNextKeyManager);
Logger.msg(7, "LDAP.useOldProps="+Gateway.getProperties().getBoolean("LDAP.useOldProps", false));
mPropManager = new LDAPPropertyManager(this, mLDAPAuth);
}
/**
- * Gets the entity key generator, used to get a unique system key for new entities.
- * @return the global NextKeyManager
- */
- public LDAPNextKeyManager getNextKeyManager()
- {
- return mNextKeyManager;
- }
-
- /**
* Gets the property manager, that is used to read and write cristal properties to the LDAP store.
* @return Returns the global LDAPPropertyManager.
*/