public String getFotoSelezionata() { HotelDTO h = getHotelPerParametro(); switch (numeroFoto) { case 1: return h.getFoto1(); case 2: return h.getFoto2(); case 3: return h.getFoto3(); default: return ""; } }
/* * Sucht passende Hotels einer Stadt entsprechen der Suchkriterien. Ruft den XMLConverter auf und gibt ein Byte-Array zurueck, dass das XML Doc enthaelt. */ @Override public byte[] suchePassendeHotels(Staedte stadt, int pool, int sterne) { byte[] bos = null; try { HotelListe liste = new HotelListe(dto.getMatchingHotels(stadt, pool, sterne)); bos = con.convertHotelsToXML(liste.getHotels()); } catch (IOException e) { e.printStackTrace(System.out); } catch (JAXBException e) { e.printStackTrace(System.out); } return bos; }
/* * Sucht alle Hotels einer Stadt. Ruft den XMLConverter auf und gibt ein Byte-Array zurueck, dass das XML Doc enthaelt. */ @Override public byte[] sucheHotelsInStadt(Staedte stadt) { byte[] b = null; try { HotelListe liste = new HotelListe(dto.getHotelFromStadt(stadt)); b = con.convertHotelsToXML(liste.getHotels()); } catch (IOException e) { e.printStackTrace(System.out); } catch (JAXBException e) { e.printStackTrace(System.out); } return b; }
public List<TipoCamere_HotelDTO> getCamere() { HotelDTO h = getHotelPerParametro(); camere = showHotel.camereHotel(h.getIdHotel()); return camere; }