
org.opentripplanner.graph_builder.model.DataSourceConfig 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.graph_builder.model;
import java.net.URI;
/**
* Specific configuration applied to a single {@link org.opentripplanner.datastore.api.DataSource}
*/
public interface DataSourceConfig {
/**
* URI to data files.
*
* Example:
* {@code "file:///Users/kelvin/otp/netex.zip", "gs://my-bucket/netex.zip" }
*
* @return the URI to the data source. The source identifies uniquely a data source.
*/
URI source();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy