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

org.opentripplanner.updater.bike_park.BikeParkDataSource Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.updater.bike_park;

import java.util.List;

import org.opentripplanner.routing.bike_park.BikePark;

/**
 * A (static or dynamic) source of bike-parks.
 * 
 * Bike park-and-ride and "OV-fiets mode" development has been funded by GoAbout
 * (https://goabout.com/).
 * 
 * @author laurent
 * @author GoAbout
 */
public interface BikeParkDataSource {

    /** Update the data from the source;
     * returns true if there might have been changes */
    public boolean update();
    
    public List getBikeParks();
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy