Searched refs:userGroups (Results 1 - 1 of 1) sorted by relevance

/opengrok/plugins/src/main/java/
H A DHttpBasicAuthorizationPlugin.java43 private static final Map<String, Set<String>> userGroups = new TreeMap<>(); field in class:HttpBasicAuthorizationPlugin
55 userGroups.put("007", new TreeSet<>(Arrays.asList(new String[]{})));
56 userGroups.put("008", new TreeSet<>(Arrays.asList(new String[]{})));
57 userGroups.put("009", new TreeSet<>(Arrays.asList(new String[]{})));
58 userGroups.put("00A", new TreeSet<>(Arrays.asList(new String[]{})));
59 userGroups.put("00B", new TreeSet<>(Arrays.asList(new String[]{})));
84 userGroups.get(request.getUserPrincipal().getName()).addAll(descendants);
133 return userGroups.get(request.getUserPrincipal().getName()).contains(group.getName());

Completed in 592 milliseconds