
org.opentripplanner.apis.gtfs.model.FeedPublisher 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.apis.gtfs.model;
import java.util.Objects;
public record FeedPublisher(String name, String url) {
public FeedPublisher {
Objects.requireNonNull(name);
Objects.requireNonNull(url);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy