Home | History | Annotate | Download | only in command

Lines Matching refs:username

355      * Validate the UserAccount for the specified username. If valid, return true. If the UserAccount does

360 * @param username - the username
364 protected boolean validateUserAccount(String username, Session session) {
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
368 sendReply(session, ReplyCodes.USER_ACCOUNT_NOT_VALID, "login.userAccountNotValid", list(username));
374 LOG.error("Home directory configured for username [" + username + "] is not valid: " + home);
375 sendReply(session, ReplyCodes.USER_ACCOUNT_NOT_VALID, "login.homeDirectoryNotValid", list(username, home));