Home | History | Annotate | Download | only in auth

Lines Matching defs:username

46     private final String username;
48 public BasicUserPrincipal(final String username) {
50 if (username == null) {
53 this.username = username;
57 return this.username;
63 hash = LangUtils.hashCode(hash, this.username);
73 if (LangUtils.equals(this.username, that.username)) {
84 buffer.append(this.username);