package pl.relationsystems.citynav.server;
import pl.relationsystems.citynav.server.TransitRoute.StepType;
import pl.relationsystems.citynav.server.model.Stop;
import pl.relationsystems.citynav.server.model.Variant;
public class TransitStep {
protected Integer startTime;
protected Variant variant;
protected Integer endTime;
protected Integer realEndTime;
protected StepType type;
protected Stop startStop;
protected Integer startStopNth;
protected Stop endStop;
protected Integer endStopNth;
protected String startHub;
protected String endHub;
/**
* @return the arrival
*/
public Integer getStartTime() {
return startTime;
}
/**
* @param arrival
* the arrival to set
*/
public void setStartTime(Integer arrival) {
this.startTime = arrival;
}
/**
* @return the variant
*/
public Variant getVariant() {
return variant;
}
/**
* @param variant
* the variant to set
*/
public void setVariant(Variant variant) {
this.variant = variant;
}
/**
* @return the departure
*/
public Integer getEndTime() {
return endTime;
}
/**
* @param departure
* the departure to set
*/
public void setEndTime(Integer departure) {
this.endTime = departure;
}
/**
* @return the type
*/
public StepType getType() {
return type;
}
/**
* @param type
* the type to set
*/
public void setType(StepType type) {
this.type = type;
}
/**
* @return the startStop
*/
public Stop getStartStop() {
return startStop;
}
/**
* @param startStop
* the startStop to set
*/
public void setStartStop(Stop startStop) {
this.startStop = startStop;
}
/**
* @return the endStop
*/
public Stop getEndStop() {
return endStop;
}
/**
* @param endStop
* the endStop to set
*/
public void setEndStop(Stop endStop) {
this.endStop = endStop;
}
/**
* @return the startStopNth
*/
public Integer getStartStopNth() {
return startStopNth;
}
/**
* @param startStopNth
* the startStopNth to set
*/
public void setStartStopNth(Integer startStopNth) {
this.startStopNth = startStopNth;
}
/**
* @return the endStopNth
*/
public Integer getEndStopNth() {
return endStopNth;
}
/**
* @param endStopNth
* the endStopNth to set
*/
public void setEndStopNth(Integer endStopNth) {
this.endStopNth = endStopNth;
}
/**
* @return the startHub
*/
public String getStartHub() {
return startHub;
}
/**
* @param startHub
* the startHub to set
*/
public void setStartHub(String startHub) {
this.startHub = startHub;
}
/**
* @return the endHub
*/
public String getEndHub() {
return endHub;
}
/**
* @param endHub
* the endHub to set
*/
public void setEndHub(String endHub) {
this.endHub = endHub;
}
/**
* @return the realEndTime
*/
public Integer getRealEndTime() {
return realEndTime;
}
/**
* @param realEndTime
* the realEndTime to set
*/
public void setRealEndTime(Integer realEndTime) {
this.realEndTime = realEndTime;
}
}