Package controller

Examples of controller.ControllerLogIn


    public beanIngreso() {
    }

    public String ingresoAlSistema() {

        ControllerLogIn controller = new ControllerLogIn();
        if (controller.LogIn(user, pass)) {
            vivienda=controller.getUsuario(user, pass).getVivienda();
            nombre=controller.getUsuario(user, pass).getNombre();
            titulo=controller.getUsuario(user, pass).getTitulo();
            return "yes";
        }
        return "no";
    }
View Full Code Here

TOP

Related Classes of controller.ControllerLogIn

Copyright © 2018 www.massapicom. 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.