|
|
|
|
@ -33,14 +33,15 @@ public class TrainScheduleSector {
|
|
|
|
|
private String reservation; |
|
|
|
|
/** |
|
|
|
|
* Up to two characters from the following: |
|
|
|
|
* |
|
|
|
|
* C - Buffet Service |
|
|
|
|
* F - Restaurant Car available for First Class passengers |
|
|
|
|
* H - Hot food available |
|
|
|
|
* M - Meal included for First Class passengers |
|
|
|
|
* P - Wheelchair only reservations |
|
|
|
|
* R - Restaurant |
|
|
|
|
* T - Trolley service |
|
|
|
|
* <ul> |
|
|
|
|
* <li>C - Buffet Service</li> |
|
|
|
|
* <li>F - Restaurant Car available for First Class passengers</li> |
|
|
|
|
* <li>H - Hot food available</li> |
|
|
|
|
* <li>M - Meal included for First Class passengers</li> |
|
|
|
|
* <li>P - Wheelchair only reservations</li> |
|
|
|
|
* <li>R - Restaurant</li> |
|
|
|
|
* <li>T - Trolley service</li> |
|
|
|
|
* </ul> |
|
|
|
|
*/ |
|
|
|
|
private String catering; |
|
|
|
|
/** |
|
|
|
|
@ -65,10 +66,11 @@ public class TrainScheduleSector {
|
|
|
|
|
private String operatingCharacteristic; |
|
|
|
|
/** |
|
|
|
|
* Sleeping accommodation available: |
|
|
|
|
* |
|
|
|
|
* B - First and standard class
|
|
|
|
|
* F - First Class only |
|
|
|
|
* S - Standard class only |
|
|
|
|
* <ul> |
|
|
|
|
* <li>B - First and standard class</li> |
|
|
|
|
* <li>F - First Class only</li> |
|
|
|
|
* <li>S - Standard class only</li> |
|
|
|
|
* </ul> |
|
|
|
|
*/ |
|
|
|
|
private String sleeper; |
|
|
|
|
/** |
|
|
|
|
@ -77,9 +79,130 @@ public class TrainScheduleSector {
|
|
|
|
|
private String trainServiceCode; |
|
|
|
|
/** |
|
|
|
|
* Seating classes available: |
|
|
|
|
* |
|
|
|
|
* Blank or B - First and standard |
|
|
|
|
* S - Standard class only |
|
|
|
|
* <ul> |
|
|
|
|
* <li><span style="font-style: italic;">Blank</span> or B - First and standard</li> |
|
|
|
|
* <li>S - Standard class only</li> |
|
|
|
|
* </ul> |
|
|
|
|
*/ |
|
|
|
|
private String trainClass; |
|
|
|
|
|
|
|
|
|
public int getSectorId() { |
|
|
|
|
return sectorId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setSectorId(int sectorId) { |
|
|
|
|
this.sectorId = sectorId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getServiceBranding() { |
|
|
|
|
return serviceBranding; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setServiceBranding(String serviceBranding) { |
|
|
|
|
this.serviceBranding = serviceBranding; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getTrainCategory() { |
|
|
|
|
return trainCategory; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setTrainCategory(String trainCategory) { |
|
|
|
|
this.trainCategory = trainCategory; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getBusinessSector() { |
|
|
|
|
return businessSector; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setBusinessSector(String businessSector) { |
|
|
|
|
this.businessSector = businessSector; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int getSpeed() { |
|
|
|
|
return speed; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setSpeed(int speed) { |
|
|
|
|
this.speed = speed; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getReservation() { |
|
|
|
|
return reservation; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setReservation(String reservation) { |
|
|
|
|
this.reservation = reservation; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getCatering() { |
|
|
|
|
return catering; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCatering(String catering) { |
|
|
|
|
this.catering = catering; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getPowerType() { |
|
|
|
|
return powerType; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setPowerType(String powerType) { |
|
|
|
|
this.powerType = powerType; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getTimingLoad() { |
|
|
|
|
return timingLoad; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setTimingLoad(String timingLoad) { |
|
|
|
|
this.timingLoad = timingLoad; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getSignalId() { |
|
|
|
|
return signalId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setSignalId(String signalId) { |
|
|
|
|
this.signalId = signalId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getHeadcode() { |
|
|
|
|
return headcode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setHeadcode(String headcode) { |
|
|
|
|
this.headcode = headcode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getOperatingCharacteristic() { |
|
|
|
|
return operatingCharacteristic; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setOperatingCharacteristic(String operatingCharacteristic) { |
|
|
|
|
this.operatingCharacteristic = operatingCharacteristic; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getSleeper() { |
|
|
|
|
return sleeper; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setSleeper(String sleeper) { |
|
|
|
|
this.sleeper = sleeper; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getTrainServiceCode() { |
|
|
|
|
return trainServiceCode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setTrainServiceCode(String trainServiceCode) { |
|
|
|
|
this.trainServiceCode = trainServiceCode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getTrainClass() { |
|
|
|
|
return trainClass; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setTrainClass(String trainClass) { |
|
|
|
|
this.trainClass = trainClass; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|