Package by.bsuir.hypermarket.dao.concrete

Examples of by.bsuir.hypermarket.dao.concrete.UserDao.findUser()


    String page = null;
    String login = request.getParameter(Commands.LOGIN_LOGIN);
    String password = request.getParameter(Commands.LOGIN_PASSWORD);
    try
      UserDao userDao = new UserDao();
      User user = userDao.findUser(login, password);
      if (user.getLogin() != null) {
        if (!user.isBan()) {
          request.setSessionAttribute(Commands.LOGIN_USER, user);
          request.setSessionAttribute(Commands.CHANGE_LANG_LOCALE, Commands.CHANGE_LANG_ENGLISH);
          page = ConfigurationManager.INSTANCE.getProperty(ConfigurationManager.MAIN_PAGE_PATH);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.