Overview

Summary

ServicesContactDonateAboutImprint


Appendix E-26: AIRCRAFT MANUFACTURER (UI prompt)


AircraftManufacturerCountryModuleAirlines

Properties (3)

PropertyTypeEntityReferenceModule
(1) CountryLONGAircraftManufacturerCountryCountryModule
(2) FoundedYearLONGAircraftManufacturer
(3) NameSTRINGAircraftManufacturer


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /aircraftmodel/manufacturer/{id}findAllAircraftModelOfManufacturer(id)AircraftModelModuleGETAircraftManufacturer AircraftModel
(2) /aircraftmanufacturerinsertAircraftManufacturer(aircraftmanufacturer)CountryModulePOSTAircraftManufacturer
(3) /aircraftmanufacturer/{id}updateAircraftManufacturerById(aircraftmanufacturer)CountryModulePUTAircraftManufacturer
(4) /aircraftmanufacturer/country/{id}findAllAircraftManufacturerOfCountry(id)CountryModuleGETCountry AircraftManufacturer
(5) /aircraftmanufacturer/{id}findAircraftManufacturerById(id)CountryModuleGETAircraftManufacturer
(6) /aircraftmanufacturer/{id}deleteAircraftManufacturerById(id)CountryModuleDELETEAircraftManufacturer
(7) /aircraftmanufacturerfindAllAircraftManufacturer()CountryModuleGETAircraftManufacturer





Example:

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


Overview

Summary

ServicesContactDonateAboutImprint