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

org.opentripplanner.standalone.config.updaters.GtfsRealtimeAlertsUpdaterConfig Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package org.opentripplanner.standalone.config.updaters;

import org.opentripplanner.standalone.config.NodeAdapter;
import org.opentripplanner.updater.alerts.GtfsRealtimeAlertsUpdaterParameters;

public class GtfsRealtimeAlertsUpdaterConfig {

  public static GtfsRealtimeAlertsUpdaterParameters create(String configRef, NodeAdapter c) {
    return new GtfsRealtimeAlertsUpdaterParameters(
        configRef,
        c.asText("feedId", null),
        c.asText("url"),
        c.asInt("earlyStartSec", 0),
        c.asBoolean("fuzzyTripMatching", false),
        c.asInt("frequencySec", 60)
    );
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy