Home | History | Annotate | Download | only in attribute

Lines Matching defs:who

43  *    "who" component, is a {@link UserPrincipal} corresponding to the identity
67 private final UserPrincipal who;
76 UserPrincipal who,
81 this.who = who;
100 private UserPrincipal who;
105 UserPrincipal who,
111 this.who = who;
118 * The type and who components are required to have been set in order
124 * if the type or who component have not been set
129 if (who == null)
130 throw new IllegalStateException("Missing who component");
131 return new AclEntry(type, who, perms, flags);
150 * @param who the principal component
153 public Builder setPrincipal(UserPrincipal who) {
154 if (who == null)
156 this.who = who;
261 * Constructs a new builder. The initial value of the type and who
280 return new Builder(entry.type, entry.who, entry.perms, entry.flags);
298 return who;
330 * both the same type, their who components are equal, their permissions
350 if (!this.who.equals(other.who))
375 h = hash(h, who);
391 // who
392 sb.append(who.getName());