* airline companies
* Note! The unique identifier is the flight number
*/
// Flight from Barcelona - Prais
Flight flight = new Flight("KLM1200", "Barcelona", "Paris", "25-NOV-2012",
"12:54", "3:15", "30-NOV-2012", "13:45", "4:25", "A7", "250");
dao.put(flight);
flight = new Flight("LHT213", "Barcelona", "Paris", "25-NOV-2012",
"18:00", "21:20", "30-NOV-2012", "1400", "18:00", "C34", "280");
dao.put(flight);
flight = new Flight("AFR4502", "Barcelona", "Paris", "25-NOV-2012",
"21:25", "23:45", "30-NOV-2012", "8:45", "12:05", "B9", "300");
dao.put(flight);
//Flight from Liverpool to Madrid
flight = new Flight("KLM1400", "Liverpool", "Madrid", "25-NOV-2012",
"18:20", "21:20", "30-NOV-2012", "14:45", "18:05", "B5", "320");
dao.put(flight);
flight = new Flight("LHT21211", "Liverpool", "Madrid", "25-NOV-2012",
"18:00", "21:20", "30-NOV-2012", "1400", "18:00", "C34", "280");
dao.put(flight);
flight = new Flight("AFR045", "Liverpool", "Madrid", "25-NOV-2012",
"21:25", "23:45", "30-NOV-2012", "8:45", "12:05", "B9", "300");
dao.put(flight);
//Flight from Vienna to Rome
dao.put(flight);
flight = new Flight("KLM140", "Vienna", "Rome", "25-NOV-2012",
"18:20", "21:20", "30-NOV-2012", "14:45", "18:05", "B5", "320");
dao.put(flight);
flight = new Flight("LHT2311", "Vienna", "Rome", "25-NOV-2012",
"18:20", "21:20", "30-NOV-2012", "14:45", "18:05", "B5", "320");
dao.put(flight);
flight = new Flight("AFR5630", "Vienna", "Rome", "25-NOV-2012",
"18:20", "21:20", "30-NOV-2012", "14:45", "18:05", "B5", "320");
dao.put(flight);
//Flight from Antalya to Zagreb
flight = new Flight("KLM560", "Antalya", "Zagreb", "25-NOV-2012",
"18:20", "21:20", "30-NOV-2012", "14:45", "18:05", "B5", "320");
dao.put(flight);
flight = new Flight("LHT12030", "Antalya", "Zagreb", "25-NOV-2012",
"18:00", "21:20", "30-NOV-2012", "14:00", "18:00", "C34", "280");
dao.put(flight);
flight = new Flight("AFR2100", "Antalya", "Zagreb", "25-NOV-2012",
"21:25", "23:45", "30-NOV-2012", "8:45", "12:05", "B9", "300");
dao.put(flight);
response.setContentType("text/html;charset=UTF-8");