Home | History | Annotate | Download | only in auth

Lines Matching refs:username

51     private final String username;
53 public BasicUserPrincipal(final String username) {
55 if (username == null) {
58 this.username = username;
62 return this.username;
68 hash = LangUtils.hashCode(hash, this.username);
78 if (LangUtils.equals(this.username, that.username)) {
89 buffer.append(this.username);