Package com.openbravo.pos.pda.bo

Examples of com.openbravo.pos.pda.bo.RestaurantManager.findUser()


        DynaActionForm inputForm = (DynaActionForm) form;
        RestaurantManager manager = new RestaurantManager();
        String login = inputForm.getString("login");
        String password = inputForm.getString("password");
        UserInfo user = manager.findUser(login, password);
        if (user != null) {
            HttpSession session = request.getSession();
            session.setAttribute("user", user);
            return mapping.findForward(SUCCESS);
        }
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.