![JAR search and dependency download from the Maven repository](/logo.png)
com.github.debugthug.xo.StrInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of TruJet Show documentation
Show all versions of TruJet Show documentation
Simple library having an App to test the XML requests and responses of TruJet.
The newest version!
package com.github.debugthug.xo;
import com.github.debugthug.xo.availability.OnlineAvailabilityRQ;
import com.github.debugthug.xo.booking.CreateBookingRQ;
import com.github.debugthug.xo.fareRules.FareRulesRQ;
import com.github.debugthug.xo.flightInfo.FlightInformationRQ;
import com.github.debugthug.xo.holdInventory.HoldInventoryRQ;
import com.thoughtworks.xstream.annotations.XStreamAlias;
@XStreamAlias("strInput")
public class StrInput {
@XStreamAlias("OnlineAvailabilityRQ")
private OnlineAvailabilityRQ onlineAvailabilityRQ;
@XStreamAlias("FlightInformationRQ")
private FlightInformationRQ flightInformationRQ;
@XStreamAlias("HoldInventoryRQ")
private HoldInventoryRQ holdInventoryRQ;
@XStreamAlias("CreateBookingRQ")
private CreateBookingRQ createBookingRQ;
@XStreamAlias("FareRulesRQ")
private FareRulesRQ fareRulesRQ;
public FareRulesRQ getFareRulesRQ() {
return fareRulesRQ;
}
public void setFareRulesRQ(FareRulesRQ fareRulesRQ) {
this.fareRulesRQ = fareRulesRQ;
}
public CreateBookingRQ getCreateBookingRQ() {
return createBookingRQ;
}
public void setCreateBookingRQ(CreateBookingRQ createBookingRQ) {
this.createBookingRQ = createBookingRQ;
}
public HoldInventoryRQ getHoldInventoryRQ() {
return holdInventoryRQ;
}
public void setHoldInventoryRQ(HoldInventoryRQ holdInventoryRQ) {
this.holdInventoryRQ = holdInventoryRQ;
}
public OnlineAvailabilityRQ getOnlineAvailabilityRQ() {
return onlineAvailabilityRQ;
}
public void setOnlineAvailabilityRQ(OnlineAvailabilityRQ onlineAvailabilityRQ) {
this.onlineAvailabilityRQ = onlineAvailabilityRQ;
}
public FlightInformationRQ getFlightInformationRQ() {
return flightInformationRQ;
}
public void setFlightInformationRQ(FlightInformationRQ flightInformationRQ) {
this.flightInformationRQ = flightInformationRQ;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy