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

org.opentripplanner.standalone.config.updaters.WFSNotePollingGraphUpdaterParameters 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.street_notes.WFSNotePollingGraphUpdater;

public class WFSNotePollingGraphUpdaterParameters extends PollingGraphUpdaterParameters
    implements WFSNotePollingGraphUpdater.Parameters {

  private final String featureType;

  public WFSNotePollingGraphUpdaterParameters(NodeAdapter c) {
    super(c);
    featureType = c.asText("featureType", null);
  }

  public String getFeatureType() { return featureType; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy