Package upc.iluminados.excepcion

Examples of upc.iluminados.excepcion.BaseExcepcion


                lista.add(vo);
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new BaseExcepcion(e.getMessage());
        } finally {
            this.cerrarResultSet(rs);
            this.cerrarStatement(stmt);
            this.cerrarConexion(con);
        }
View Full Code Here


                lista.add(vo);
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new BaseExcepcion(e.getMessage());
        } finally {
            this.cerrarResultSet(rs);
            this.cerrarStatement(stmt);
            this.cerrarConexion(con);
        }
View Full Code Here

            lista.add(vo);
        }
    } catch (SQLException e) {
        System.err.println(e.getMessage());
        throw new BaseExcepcion(e.getMessage());
    } finally {
        this.cerrarResultSet(rs);
        this.cerrarStatement(stmt);
        this.cerrarConexion(con);
    }
View Full Code Here

            if (i != 1) {
                throw new SQLException("No se pudo insertar");
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new BaseExcepcion(e.getMessage());
        } finally {
            this.cerrarStatement(stmt);
            this.cerrarConexion(con);
        }
    }
View Full Code Here

                vo.setApellidoMaterno(rs.getString(4));
              vo.setTipo(rs.getInt(5));
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new BaseExcepcion(e.getMessage());
        } finally {
            this.cerrarResultSet(rs);
            this.cerrarStatement(stmt);
            this.cerrarConexion(con);
        }
View Full Code Here

                vo.setApellidoPaterno(rs.getString(3));
                vo.setApellidoMaterno(rs.getString(4));
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new BaseExcepcion(e.getMessage());
        } finally {
            this.cerrarResultSet(rs);
            this.cerrarStatement(stmt);
            this.cerrarConexion(con);
        }
View Full Code Here

                vo.setApellidoMaterno(rs.getString(4));
              vo.setTipo(rs.getInt(5));
            }
        } catch (SQLException e) {
            System.err.println(e.getMessage());
            throw new BaseExcepcion(e.getMessage());
        } finally {
            this.cerrarResultSet(rs);
            this.cerrarStatement(stmt);
            this.cerrarConexion(con);
        }
View Full Code Here

  private UsuarioDAO usuarioDAO = new UsuarioDAO();

    public void insertar(Usuario vo) throws BaseExcepcion{

        if (StringUtils.isEmpty(vo.getCorreo())) {
            throw new BaseExcepcion("Correo Requerido");
        }
        if (StringUtils.isEmpty(vo.getDni())) {
            throw new BaseExcepcion("Dni Requerido");
        }

        if (StringUtils.isEmpty(vo.getClave())) {
            throw new BaseExcepcion("Clave Requerida");
        }

        if (StringUtils.isEmpty(vo.getNombre())) {
            throw new BaseExcepcion("Nombres Requeridos");
        }
        if (StringUtils.isEmpty(vo.getApellidoPaterno())) {
            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");
        }

        usuarioDAO.insertar(vo);
    }
View Full Code Here

 
  private CanchaDAO canchaDAO = new CanchaDAO();
 
  public void insertar(Cancha vo, List<HorarioCancha> lista) throws BaseExcepcion {
        if (vo.getLocal() == null || vo.getLocal().getId() == null) {
            throw new BaseExcepcion("Local Requerido");
        }
        if (StringUtils.isEmpty(vo.getNombre())) {
            throw new BaseExcepcion("Nombre Requerido");
        }
        if (vo.getTarifaDiurna() == 0.0) {
            throw new BaseExcepcion("Tarifa diruna Requerido");
        }
        if (vo.getTarifaNocturna() == 0.0) {
            throw new BaseExcepcion("Tarifa diruna Requerido");
        }
        if (lista == null || lista.isEmpty()) {
            throw new BaseExcepcion("Horario Requerido");
        }

        Cancha cancha = canchaDAO.obtener(vo.getNombre(), vo.getLocal().getId());
        if (cancha != null) {
            throw new BaseExcepcion("Cancha ya existe");
        }
        canchaDAO.insertar(vo, lista);
    }
View Full Code Here

    private LocalDAO localDAO = new LocalDAO();

    public void insertar(Local vo) throws BaseExcepcion {

        if (StringUtils.isEmpty(vo.getNombre())) {
            throw new BaseExcepcion("Nombre Requerido");
        }
        if (StringUtils.isEmpty(vo.getDireccion())) {
            throw new BaseExcepcion("Dirección Requerido");
        }

        if (StringUtils.isEmpty(vo.getTelefono())) {
            throw new BaseExcepcion("Teléfono Requerido");
        }

        if (vo.getDistritoId() == 0) {
            throw new BaseExcepcion("Distrito Requerido");
        }

        if (vo.getDueno()== null || vo.getDueno().getId() == null) {
            throw new BaseExcepcion("Duenio Requerido");
        }
        Local local = localDAO.obtener(vo.getNombre(), vo.getDueno().getId());
        if (local != null) {
            throw new BaseExcepcion("Este Nombre de Local ya se registro para este Usuario");
        }
        localDAO.insertar(vo);
    }
View Full Code Here

TOP

Related Classes of upc.iluminados.excepcion.BaseExcepcion

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.