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

org.opentripplanner.standalone.config.updaters.sources.UpdaterSourceParameters Maven / Gradle / Ivy

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

import org.opentripplanner.standalone.config.NodeAdapter;
import org.opentripplanner.updater.UpdaterDataSourceParameters;

public class UpdaterSourceParameters implements UpdaterDataSourceParameters {
  private final String url;

  public UpdaterSourceParameters(NodeAdapter c) {
    url = c.asText("url", null);
  }

  public String getUrl() { return url; }

  public String getName() { return url; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy