Check if LDAPObject is available from a previously cached proxied user
Closes #34412 Signed-off-by: Stefan Guilhen <sguilhen@redhat.com>
This commit is contained in:
parent
a4cbd77043
commit
d66030fcad
1 changed files with 15 additions and 3 deletions
|
@ -45,7 +45,13 @@ public class LDAPStorageUserManager {
|
|||
}
|
||||
|
||||
public LDAPObject getManagedLDAPObject(String userId) {
|
||||
return managedLDAPObjects.get(userId);
|
||||
ManagedUserEntry entry = managedUsers.get(userId);
|
||||
if (entry != null) {
|
||||
return entry.getLdapUser();
|
||||
}
|
||||
else {
|
||||
return managedLDAPObjects.get(userId);
|
||||
}
|
||||
}
|
||||
|
||||
public void setManagedLDAPObject(String userId, LDAPObject ldapObject) {
|
||||
|
@ -74,7 +80,7 @@ public class LDAPStorageUserManager {
|
|||
}
|
||||
|
||||
LDAPTransaction ldapTransaction = new LDAPTransaction(provider, ldapObject);
|
||||
ManagedUserEntry newEntry = new ManagedUserEntry(proxiedUser, ldapTransaction);
|
||||
ManagedUserEntry newEntry = new ManagedUserEntry(proxiedUser, ldapObject, ldapTransaction);
|
||||
managedUsers.put(userId, newEntry);
|
||||
}
|
||||
|
||||
|
@ -87,10 +93,12 @@ public class LDAPStorageUserManager {
|
|||
private static class ManagedUserEntry {
|
||||
|
||||
private final UserModel managedProxiedUser;
|
||||
private final LDAPObject ldapUser;
|
||||
private final LDAPTransaction ldapTransaction;
|
||||
|
||||
public ManagedUserEntry(UserModel managedProxiedUser, LDAPTransaction ldapTransaction) {
|
||||
public ManagedUserEntry(UserModel managedProxiedUser, LDAPObject ldapUser, LDAPTransaction ldapTransaction) {
|
||||
this.managedProxiedUser = managedProxiedUser;
|
||||
this.ldapUser = ldapUser;
|
||||
this.ldapTransaction = ldapTransaction;
|
||||
}
|
||||
|
||||
|
@ -98,6 +106,10 @@ public class LDAPStorageUserManager {
|
|||
return managedProxiedUser;
|
||||
}
|
||||
|
||||
public LDAPObject getLdapUser() {
|
||||
return ldapUser;
|
||||
}
|
||||
|
||||
public LDAPTransaction getLdapTransaction() {
|
||||
return ldapTransaction;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue