org.opentripplanner.model.Operator 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
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 - 2025 Weber Informatics LLC | Privacy Policy