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

/opengrok/src/org/opensolaris/opengrok/configuration/
H A DGroup.java44 private Set<Group> descendants = new TreeSet<>(); field in class:Group
62 return descendants;
65 public void setDescendants(Set<Group> descendants) { argument
66 this.descendants = descendants;
70 this.descendants.add(g);
74 this.descendants.remove(g);
100 descendants.add(g);
/opengrok/plugins/src/main/java/
H A DHttpBasicAuthorizationPlugin.java75 Set<String> descendants = new TreeSet<>();
81 discoverGroup(group, request, descendants);
84 userGroups.get(request.getUserPrincipal().getName()).addAll(descendants);
87 private void discoverGroup(String group, HttpServletRequest request, Set<String> descendants) { argument
104 descendants.add(grp.getName());
107 descendants.add(g.getName());

Completed in 36 milliseconds