Class GetScheduleEquipment

java.lang.Object
org.deltava.dao.DAO
org.deltava.dao.GetScheduleEquipment

public class GetScheduleEquipment extends DAO
A Data Access Object to load equipment types from the Flight Schedule.
Since:
9.0
Version:
9.0
Author:
Luke
  • Constructor Details

    • GetScheduleEquipment

      public GetScheduleEquipment(Connection c)
      Initializes the Data Access Object.
      Parameters:
      c - the JDBC connection to use
  • Method Details

    • getEquipmentTypes

      public Collection<String> getEquipmentTypes(RoutePair rp, Airline a) throws DAOException
      Returns equipment used on a particular route pair.
      Parameters:
      rp - the RotuePair
      a - the Airline, or null for all
      Returns:
      a Collection of equipment type names
      Throws:
      DAOException - if a JDBC error occurs
    • getEquipmentTypes

      public Collection<String> getEquipmentTypes(Airline a) throws DAOException
      Returns all equipment types used by a particular Airline.
      Parameters:
      a - an Airline
      Returns:
      a Collection of equipment type names
      Throws:
      DAOException - if a JDBC error occurs