Home | History | Annotate | Download | only in fake

Lines Matching refs:username

25  * Represents a single user account on the server, including the username, password, home

29 * The <code>username</code> and <code>homeDirectory</code> property must be non-null
63 private String username;
83 * @param username - the user name
87 public UserAccount(String username, String password, String homeDirectory) {
88 setUsername(username);
94 return username;
97 public void setUsername(String username) {
98 this.username = username;
185 * - if the username property is null
188 Assert.notNullOrEmpty(username, "username");
203 return "UserAccount[username=" + username + "; password=" + password + "; homeDirectory="
219 if (equalOrBothNull(username, entry.getOwner())) {
240 if (equalOrBothNull(username, entry.getOwner())) {
261 if (equalOrBothNull(username, entry.getOwner())) {