
org.opentripplanner.updater.vehicle_parking.VehicleParkingUpdaterParameters 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
The newest version!
package org.opentripplanner.updater.vehicle_parking;
import org.opentripplanner.updater.spi.PollingGraphUpdaterParameters;
/**
* Class that implements {@link PollingGraphUpdaterParameters} and can be extended to include other
* parameters required by a custom vehicle parking updater.
*/
public interface VehicleParkingUpdaterParameters extends PollingGraphUpdaterParameters {
VehicleParkingSourceType sourceType();
UpdateType updateType();
enum UpdateType {
FULL,
AVAILABILITY_ONLY,
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy