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

com.amadeus.schedule.Flights Maven / Gradle / Ivy

package com.amadeus.schedule;

import com.amadeus.Amadeus;
import com.amadeus.Params;
import com.amadeus.Response;
import com.amadeus.exceptions.ResponseException;
import com.amadeus.resources.DatedFlight;
import com.amadeus.resources.Resource;

/**
 * 

* A namespaced client for the * /v2/schedule/flights endpoints. *

* *

* Access via the Amadeus client object. *

* *
 * Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
 * amadeus.schedule.flights;
*/ public class Flights { private Amadeus client; /** * Constructor. * @hide */ public Flights(Amadeus client) { this.client = client; } /** *

* Retrieves status of a given flight. *

* *
   * amadeus.schedule.flights.get(Params
   *     .with("carrierCode", "AZ")
   *     .and("flightNumber", "319")
   *     .and("scheduledDepartureDate", "2021-03-13"));
* * @param params the parameters to send to the API * @return an API response object * @throws ResponseException when an exception occurs */ public DatedFlight[] get(Params params) throws ResponseException { Response response = client.get("/v2/schedule/flights", params); return (DatedFlight[]) Resource.fromArray(response, DatedFlight[].class); } /** * Convenience method for calling get without any parameters. * @see DatedFlight#get() */ public DatedFlight[] get() throws ResponseException { return get(null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy