All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.debugthug.xo.availability.FlightDetails Maven / Gradle / Ivy

package com.github.debugthug.xo.availability;

import java.util.ArrayList;
import java.util.List;

import com.github.debugthug.xo.Fare;
import com.github.debugthug.xo.Flight;
import com.github.debugthug.xo.Tax;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

@XStreamAlias("FlightDetails")
public class FlightDetails {

	@XStreamImplicit
	@XStreamAlias("Fare")
	private List fareList=new ArrayList();

	@XStreamImplicit
	@XStreamAlias("Flight")
	private List flightList=new ArrayList();
	
	@XStreamImplicit
	@XStreamAlias("Tax")
	private List taxList=new ArrayList();

	public List getTaxList() {
		return taxList;
	}

	public void setTaxList(List taxList) {
		this.taxList = taxList;
	}

	public List getFareList() {
		return fareList;
	}

	public void setFareList(List fareList) {
		this.fareList = fareList;
	}

	public List getFlightList() {
		return flightList;
	}

	public void setFlightList(List flightList) {
		this.flightList = flightList;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy