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

org.opentripplanner.apis.gtfs.model.FeedPublisher Maven / Gradle / Ivy

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