org.opentripplanner.standalone.config.routerconfig.updaters.WFSNotePollingGraphUpdaterConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.standalone.config.routerconfig.updaters;
import static org.opentripplanner.standalone.config.framework.json.OtpVersion.NA;
import org.opentripplanner.standalone.config.framework.json.NodeAdapter;
import org.opentripplanner.updater.street_note.WFSNotePollingGraphUpdaterParameters;
public class WFSNotePollingGraphUpdaterConfig {
public static WFSNotePollingGraphUpdaterParameters create(String configRef, NodeAdapter c) {
return new WFSNotePollingGraphUpdaterParameters(
configRef,
c.of("url").since(NA).summary("TODO").asString(),
c.of("featureType").since(NA).summary("TODO").asString(),
c.of("frequencySec").since(NA).summary("TODO").asInt(60)
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy