![JAR search and dependency download from the Maven repository](/logo.png)
com.github.debugthug.xo.availability.OnlineAvailabilityRQ 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.availability;
import com.github.debugthug.xo.Authenticate;
import com.github.debugthug.xo.Errors;
import com.github.debugthug.xo.Flight;
import com.github.debugthug.xo.Pax;
import com.thoughtworks.xstream.annotations.XStreamAlias;
@XStreamAlias("OnlineAvailabilityRQ")
public class OnlineAvailabilityRQ {
@XStreamAlias("Authenticate")
private Authenticate authenticate;
@XStreamAlias("Flight")
private Flight flight;
@XStreamAlias("Pax")
private Pax pax;
@XStreamAlias("ReturnFlight")
private ReturnFlight returnFlight;
@XStreamAlias("DepartureFare")
private DepartureFare departureFare;
@XStreamAlias("ReturnFare")
private ReturnFare returnFare;
@XStreamAlias("Others")
private Others others;
@XStreamAlias("Errors")
private Errors errors;
public Authenticate getAuthenticate() {
return authenticate;
}
public void setAunthenticate(Authenticate authenticate) {
this.authenticate = authenticate;
}
public Flight getFlight() {
return flight;
}
public void setFlight(Flight flight) {
this.flight = flight;
}
public Pax getPax() {
return pax;
}
public void setPax(Pax pax) {
this.pax = pax;
}
public ReturnFlight getReturnFlight() {
return returnFlight;
}
public void setReturnFlight(ReturnFlight returnFlight) {
this.returnFlight = returnFlight;
}
public DepartureFare getDepartureFare() {
return departureFare;
}
public void setDepartureFare(DepartureFare departureFare) {
this.departureFare = departureFare;
}
public ReturnFare getReturnFare() {
return returnFare;
}
public void setReturnFare(ReturnFare returnFare) {
this.returnFare = returnFare;
}
public Others getOthers() {
return others;
}
public void setOthers(Others others) {
this.others = others;
}
public Errors getErrors() {
return errors;
}
public void setErrors(Errors errors) {
this.errors = errors;
}
public void setAuthenticate(Authenticate authenticate) {
this.authenticate = authenticate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy