Overview

Summary

ServicesContactDonateAboutImprint


Appendix E-4: AIRPORT (UI prompt)


AirportAirportModuleAirlines

Properties (10)

PropertyTypeEntityReferenceModule
(1) AirportTypeSTRINGAirport
(2) CitySTRINGAirport
(3) CountryLONGAirportCountryCountryModule
(4) ElevationLONGAirport
(5) IataCodeSTRINGAirport
(6) IcaoCodeSTRINGAirport
(7) LatitudeSTRINGAirport
(8) LongitudeSTRINGAirport
(9) NameSTRINGAirport
(10) TimeZoneSTRINGAirport


Module Interfaces (11)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /baggageitem/checkedinairport/{id}findAllBaggageItemOfCheckedInAirport(id)AirportModuleGETAirport BaggageItem
(2) /airportinsertAirport(airport)AirportModulePOSTAirport
(3) /airport/{id}updateAirportById(airport)AirportModulePUTAirport
(4) /airportfindAllAirport()AirportModuleGETAirport
(5) /baggageitem/finalairport/{id}findAllBaggageItemOfFinalAirport(id)AirportModuleGETAirport BaggageItem
(6) /airport/{id}findAirportById(id)AirportModuleGETAirport
(7) /airport/country/{id}findAllAirportOfCountry(id)AirportModuleGETCountry Airport
(8) /airport/{id}deleteAirportById(id)AirportModuleDELETEAirport
(9) /airlinehub/airport/{id}findAllAirlineHubOfAirport(id)AirportModuleGETAirport AirlineHub
(10) /route/originairport/{id}findAllRouteOfOriginAirport(id)FlightNumberModuleGETAirport Route
(11) /route/destinationairport/{id}findAllRouteOfDestinationAirport(id)FlightNumberModuleGETAirport Route





Example:

final Airport airport = (Airport) invokeModule(AIRPORT_MODULE + "/airport/" + id, Airport.class);
if (airport != null) {
    final Country country1 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + airport.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return airport;


Overview

Summary

ServicesContactDonateAboutImprint