Overview

Summary

ContactDonateImprint


Appendix E-26: LOCATION (UI prompt)


LocationLocationModuleZeppelinFlight

Properties (6)

PropertyTypeEntityReferenceModule
(1) CountryINTLocationCountryCountryModule
(2) LatitudeSTRINGLocation
(3) LocationTypeSTRINGLocation
(4) LongitudeSTRINGLocation
(5) NameSTRINGLocation
(6) RegionSTRINGLocation


Module Interfaces (18)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /memorial/location/{id}findAllMemorialOfLocation(id)EngineModuleGETLocation Memorial
(2) /location/{id}deleteLocationById(id)LocationModuleDELETELocation
(3) /flightroute/arrivallocation/{id}findAllFlightRouteOfArrivalLocation(id)LocationModuleGETLocation FlightRoute
(4) /accident/location/{id}findAllAccidentOfLocation(id)LocationModuleGETLocation Accident
(5) /hangar/location/{id}findAllHangarOfLocation(id)LocationModuleGETLocation Hangar
(6) /locationinsertLocation(location)LocationModulePOSTLocation
(7) /locationfindAllLocation()LocationModuleGETLocation
(8) /jobposting/location/{id}findAllJobPostingOfLocation(id)LocationModuleGETLocation JobPosting
(9) /location/{id}updateLocationById(location)LocationModulePUTLocation
(10) /flightroute/departurelocation/{id}findAllFlightRouteOfDepartureLocation(id)LocationModuleGETLocation FlightRoute
(11) /location/{id}findLocationById(id)LocationModuleGETLocation
(12) /location/country/{id}findAllLocationOfCountry(id)LocationModuleGETCountry Location
(13) /mission/originlocation/{id}findAllMissionOfOriginLocation(id)MissionModuleGETLocation Mission
(14) /mission/destinationlocation/{id}findAllMissionOfDestinationLocation(id)MissionModuleGETLocation Mission
(15) /organization/headquarterslocation/{id}findAllOrganizationOfHeadquartersLocation(id)OrganizationModuleGETLocation Organization
(16) /event/location/{id}findAllEventOfLocation(id)OrganizationModuleGETLocation Event
(17) /restaurant/location/{id}findAllRestaurantOfLocation(id)RestaurantModuleGETLocation Restaurant
(18) /zeppelin/homebaselocation/{id}findAllZeppelinOfHomeBaseLocation(id)ZeppelinModuleGETLocation Zeppelin





Example:

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


Overview

Summary

ContactDonateImprint