Examples of checkUserLogin()


Examples of com.extjs.common.dao.IUserDetails.checkUserLogin()

   * @throws java.sql.SQLException
   */
  public boolean authenticate(String userName, String password, HttpServletRequest request) {
    IUserDetails userDetails = (IUserDetails) ServiceFinder.getContext(request).getBean("UserDetailsHibernateDao");
    try {
      return  userDetails.checkUserLogin(userName, password);
    } catch (DaoException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    return false;
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.