public static boolean listDrivers() {
    Driver driver = new Driver();

    ArrayList<Driver> drivers = driver.List();

    System.out.println(drivers);

    return true;
  }