Package upc.iluminados.modelo

Examples of upc.iluminados.modelo.Usuario


    service = (ServiciosRegistrarDuenio) fabrica.getBean("clienteServiciosRegistrarDuenio");
  }
 
    @Test
  public void registrar(){
      Usuario duenio = new Usuario();
      Bean resultado = service.registrar(duenio);
      assertEquals(resultado.getStatus(),"OK" );
  }
View Full Code Here


 
 
  @Test
  public void listar(){
   
    Usuario cli01=new Usuario();
    cli01=service.obtenerCliente("1");
   
    AlquilerCancha alquiler=(AlquilerCancha) service.listarConHis("","","");
  }
View Full Code Here

        }
    }
   
     public Usuario obtener(String correo, String clave) throws DAOExcepcion {
        System.out.println("UsuarioDAO: obtener(String correo, String clave)");
        Usuario vo = null;
        Connection con = null;
        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            String query = "select idUsuario, nombre, apellidoPaterno, apellidoMaterno, tipo from tb_usuario where correo=? and clave = ?";
            con = ConexionBD.obtenerConexion();
            stmt = con.prepareStatement(query);
            stmt.setString(1, correo);
            stmt.setString(2, clave);
            rs = stmt.executeQuery();
            if (rs.next()) {
              vo = new Usuario();
                vo.setId(rs.getInt(1));
                vo.setNombre(rs.getString(2));
                vo.setApellidoPaterno(rs.getString(3));
                vo.setApellidoMaterno(rs.getString(4));
              vo.setTipo(rs.getInt(5));
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new DAOExcepcion(e.getMessage());
        } finally {
View Full Code Here

        return vo;
    }

    public Usuario obtenerCorreo(String correo) throws DAOExcepcion {
        System.out.println("UsuarioDAO: obtener(String correo)");
        Usuario vo = null;
        Connection con = null;
        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            String query = "select idUsuario, nombre, apellidoPaterno, apellidoMaterno from tb_usuario where correo=? ";
            con = ConexionBD.obtenerConexion();
            stmt = con.prepareStatement(query);
            stmt.setString(1, correo);
            rs = stmt.executeQuery();
            if (rs.next()) {
                vo = new Usuario();
                vo.setId(rs.getInt(1));
                vo.setNombre(rs.getString(2));
                vo.setApellidoPaterno(rs.getString(3));
                vo.setApellidoMaterno(rs.getString(4));
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new DAOExcepcion(e.getMessage());
        } finally {
View Full Code Here

        return vo;
    }

    public Usuario obtenerdni(String dni) throws DAOExcepcion {
        System.out.println("UsuarioDAO: obtener(String dni)");
        Usuario vo = null;
        Connection con = null;
        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            String query = "select idUsuario, nombre, apellidoPaterno, apellidoMaterno from tb_usuario where dni=? ";
            con = ConexionBD.obtenerConexion();
            stmt = con.prepareStatement(query);
            stmt.setString(1, dni);
            rs = stmt.executeQuery();
            if (rs.next()) {
                vo.setId(rs.getInt(1));
                vo.setNombre(rs.getString(2));
                vo.setApellidoPaterno(rs.getString(3));
                vo.setApellidoMaterno(rs.getString(4));
              vo.setTipo(rs.getInt(5));
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new DAOExcepcion(e.getMessage());
        } finally {
View Full Code Here

        }
        if (StringUtils.isEmpty(vo.getApellidoMaterno())) {
            throw new DAOExcepcion("Apellido Materno Requerido");
        }
       
        Usuario usuario = usuarioDAO.obtenerCorreo(vo.getCorreo());
        if (usuario != null) {
            throw new DAOExcepcion("El correo ya existe");
        }
        if (usuarioDAO.obtenerdni(vo.getDni()) != null) {
            throw new DAOExcepcion("El DNI ya existe");
View Full Code Here

            throw new BaseExcepcion("Apellido Paterno Requerido");
        }
        if (StringUtils.isEmpty(vo.getApellidoMaterno())) {
            throw new BaseExcepcion("Apellido Materno Requerido");
        }
        Usuario usuario = usuarioDAO.obtenerCorreo(vo.getCorreo());
        if (usuario != null) {
            throw new BaseExcepcion("El correo ya existe");
        }
        if (usuarioDAO.obtenerdni(vo.getDni()) != null) {
            throw new BaseExcepcion("El DNI ya existe");
View Full Code Here

    //Francisco
    public Collection<AlquilerCancha> listar(Integer idCliente) throws BaseExcepcion {
        System.out.println("AlquilerCanchaDAO: listar(Integer idCliente)");
        Collection<AlquilerCancha> lista = new ArrayList<AlquilerCancha>();
        AlquilerCancha vo = null;
        Usuario cliente = null;
        HorarioCancha horarioCancha = null;
        Cancha cancha = null;
       
       
        Connection con = null;
        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            String query = "SELECT a.fecha, a.horaInicio, a.horaFin, b.idUsuario, b.nombre, b.apellidoPaterno, b.apellidoMaterno, d.nombre as canchanombre "
                    + " FROM tb_alquilercancha a, tb_usuario b, tb_horariocancha c, tb_cancha d "
                    + " Where a.idUsuario = b.idUsuario and b.tipo = 2 and a.idHorario = c.idHorario and c.idCancha = d.idCancha ";
            if(idCliente!=null){
                query = query + " and idUsuario = " + idCliente;
            }
            con = ConexionBD.obtenerConexion();
            stmt = con.prepareStatement(query);
            rs = stmt.executeQuery();
            while (rs.next()) {
                vo = new AlquilerCancha();
                cliente = new Usuario();
                horarioCancha = new HorarioCancha();
                cancha = new Cancha();
                
                vo.setCliente(cliente);
                vo.setHorarioCancha(horarioCancha);
                horarioCancha.setCancha(cancha);
               
                //AlquilerCancha
                vo.setFecha(rs.getString(1));
                vo.setHoraInicio(rs.getString(2));
                vo.setHoraFin(rs.getString(3));
               
                //Cliente
                cliente.setNombre(rs.getString(5));
               
                //Cancha
                cancha.setNombre(rs.getString("canchanombre"));
            
View Full Code Here

        }
    }
   
     public Usuario obtener(String correo, String clave) throws BaseExcepcion {
        System.out.println("UsuarioDAO: obtener(String correo, String clave)");
        Usuario vo = null;
        Connection con = null;
        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            String query = "select idUsuario, nombre, apellidoPaterno, apellidoMaterno, tipo from tb_usuario where correo=? and clave = ?";
            con = ConexionBD.obtenerConexion();
            stmt = con.prepareStatement(query);
            stmt.setString(1, correo);
            stmt.setString(2, clave);
            rs = stmt.executeQuery();
            if (rs.next()) {
                vo.setId(rs.getInt(1));
                vo.setNombre(rs.getString(2));
                vo.setApellidoPaterno(rs.getString(3));
                vo.setApellidoMaterno(rs.getString(4));
              vo.setTipo(rs.getInt(5));
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new BaseExcepcion(e.getMessage());
        } finally {
View Full Code Here

        return vo;
    }

    public Usuario obtenerCorreo(String correo) throws BaseExcepcion {
        System.out.println("UsuarioDAO: obtener(String correo)");
        Usuario vo = null;
        Connection con = null;
        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            String query = "select idUsuario, nombre, apellidoPaterno, apellidoMaterno from tb_usuario where correo=? ";
            con = ConexionBD.obtenerConexion();
            stmt = con.prepareStatement(query);
            stmt.setString(1, correo);
            rs = stmt.executeQuery();
            if (rs.next()) {
                vo = new Usuario();
                vo.setId(rs.getInt(1));
                vo.setNombre(rs.getString(2));
                vo.setApellidoPaterno(rs.getString(3));
                vo.setApellidoMaterno(rs.getString(4));
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new BaseExcepcion(e.getMessage());
        } finally {
View Full Code Here

TOP

Related Classes of upc.iluminados.modelo.Usuario

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.