Java Database Assignment 1: Using my Flights Example Please add the following.... The User would now like to see: a list of Flights from a specific Airport (try "BOS" for Boston) add the following Java code Flight.java -> An Entity class look at the ToursDB Schema for see the fields SQL to Java TIME -> java.util.Date DATE -> java.until.Date INTEGER -> int DOUBLE -> double VARCHAR -> String CHAR -> String FlightDAO -> An Action Interface w/ a single method findFlightsByOriginAirport(String airport) FlightDAOImpl -> The Action Implementation modify the main method to display the flights challanges: can you add these Action methods? findFlightsByDestinationAirport(String airport) findFlightsByOriginCity(String city) findFlightsByDestinationCity(String city)