mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-696: Use Guava Sets to combine the user groups.
This commit is contained in:
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.apache.guacamole.auth.jdbc.user;
|
package org.apache.guacamole.auth.jdbc.user;
|
||||||
|
|
||||||
|
import com.google.common.collect.Sets;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
import org.apache.guacamole.net.auth.AuthenticatedUser;
|
import org.apache.guacamole.net.auth.AuthenticatedUser;
|
||||||
@@ -172,9 +172,8 @@ public class ModeledAuthenticatedUser extends RemoteAuthenticatedUser {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Set<String> getEffectiveUserGroups() {
|
public Set<String> getEffectiveUserGroups() {
|
||||||
Set<String> allGroups = new HashSet<>(user.getEffectiveUserGroups());
|
return Sets.union(user.getEffectiveUserGroups(),
|
||||||
allGroups.addAll(super.getEffectiveUserGroups());
|
super.getEffectiveUserGroups());
|
||||||
return Collections.unmodifiableSet(allGroups);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user