Statement stm = this.db.getConnection().createStatement();
String query = "SELECT * FROM usuario";
ResultSet rs = stm.executeQuery(query);
while (rs.next()) {
uss.add(new Usuario(rs.getInt("id"),
rs.getString("username"),
rs.getString("password"),
rs.getString("nombre"),
rs.getString("apellido")));
}