All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.updater.vehicle_rental.VehicleRentalUpdaterParameters Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.updater.vehicle_rental;

import org.opentripplanner.updater.PollingGraphUpdaterParameters;
import org.opentripplanner.updater.vehicle_rental.datasources.params.VehicleRentalDataSourceParameters;

public class VehicleRentalUpdaterParameters implements PollingGraphUpdaterParameters {
  private final String configRef;
  private final int frequencySec;
  private final VehicleRentalDataSourceParameters source;

  public VehicleRentalUpdaterParameters(
      String configRef,
      int frequencySec,
      VehicleRentalDataSourceParameters source
  ) {
    this.configRef = configRef;
    this.frequencySec = frequencySec;
    this.source = source;
  }

  @Override
  public int getFrequencySec() {
    return frequencySec;
  }

  /**
   * The config name/type for the updater. Used to reference the configuration element.
   */
  @Override
  public String getConfigRef() {
    return configRef;
  }

  public VehicleRentalDataSourceParameters sourceParameters() {
    return source;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy