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

org.opentripplanner.model.Operator Maven / Gradle / Ivy

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

/**
 * A company which is responsible for operating public transport services.
 * The operator will often operate under contract with an Authority (Agency).
 * 

* Netex ONLY. Operators are available only if the data source is Netex, not GTFS. * * @see Agency */ public class Operator extends TransitEntity { private static final long serialVersionUID = 1L; private FeedScopedId id; private String name; private String url; private String phone; @Override public FeedScopedId getId() { return id; } public void setId(FeedScopedId id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String toString() { return ""; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy