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

org.opentripplanner.standalone.config.updaters.sources.GenericKmlBikeRentalSourceParameters 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.bike_rental.GenericKmlBikeRentalDataSource;

public class GenericKmlBikeRentalSourceParameters extends UpdaterSourceParameters implements
    GenericKmlBikeRentalDataSource.Parameters {

  private final String namePrefix;

  public GenericKmlBikeRentalSourceParameters(NodeAdapter c) {
    super(c);
    namePrefix = c.asText("namePrefix", null);
  }

  public String getNamePrefix() { return namePrefix; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy