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

org.opentripplanner.service.vehicleparking.VehicleParkingService Maven / Gradle / Ivy

The newest version!
package org.opentripplanner.service.vehicleparking;

import com.google.common.collect.ListMultimap;
import java.util.Collection;
import org.opentripplanner.service.vehicleparking.model.VehicleParking;
import org.opentripplanner.service.vehicleparking.model.VehicleParkingGroup;

/**
 * The read-only service for getting information about parking facilities.
 * 

* For writing data see {@link VehicleParkingRepository} */ public interface VehicleParkingService { Collection listBikeParks(); Collection listCarParks(); Collection listVehicleParkings(); ListMultimap listVehicleParkingGroups(); boolean hasBikeParking(); boolean hasCarParking(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy