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

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

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

import org.opentripplanner.standalone.config.NodeAdapter;
import org.opentripplanner.updater.stoptime.MqttGtfsRealtimeUpdaterParameters;

public class MqttGtfsRealtimeUpdaterConfig {
  public static MqttGtfsRealtimeUpdaterParameters create(String configRef, NodeAdapter c) {
    return new MqttGtfsRealtimeUpdaterParameters(
        configRef,
        c.asText("feedId", null),
        c.asText("url"),
        c.asText("topic"),
        c.asInt("qos", 0),
        c.asBoolean("fuzzyTripMatching", false)
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy