
org.opentripplanner.service.vehiclerental.VehicleRentalRepository 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.service.vehiclerental;
import org.opentripplanner.service.vehiclerental.model.VehicleRentalPlace;
import org.opentripplanner.transit.model.framework.FeedScopedId;
/**
* The writable data store of vehicle rental information.
*/
public interface VehicleRentalRepository {
void addVehicleRentalStation(VehicleRentalPlace vehicleRentalStation);
void removeVehicleRentalStation(FeedScopedId vehicleRentalStationId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy