Overview

Summary

ContactDonateImprint


8. LOCATION CITY MODULE (UI prompt)



Module Entities (11)

EntityAliasModuleGlobal Schema
(1) AirportAirportAirportModuleBookingCom
(2) AirportTransferProductAirportTransferProductAirportModuleBookingCom
(3) AttractionAttractionPartnerAccountModuleBookingCom
(4) CarRentalLocationCarRentalLocationCarRentalLocationModuleBookingCom
(5) FlightBookingFlightBookingCurrencyModuleBookingCom
(6) FlightPassengerFlightPassengerLocationCityModuleBookingCom
(7) LocationCityLocationCityLocationCityModuleBookingCom
(8) LocationCountryLocationCountryLocationCityModuleBookingCom
(9) LocationDistrictLocationDistrictPropertyModuleBookingCom
(10) LocationRegionLocationRegionLocationCityModuleBookingCom
(11) PropertyPropertyPropertyModuleBookingCom

Module Interfaces (25)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /flightpassenger/{id}updateFlightPassengerById(flightpassenger)LocationCityModulePUTFlightPassenger
(2) /flightpassengerinsertFlightPassenger(flightpassenger)LocationCityModulePOSTFlightPassenger
(3) /locationregion/{id}findLocationRegionById(id)LocationCityModuleGETLocationRegion
(4) /locationcountry/{id}deleteLocationCountryById(id)LocationCityModuleDELETELocationCountry
(5) /locationregionfindAllLocationRegion()LocationCityModuleGETLocationRegion
(6) /locationcity/{id}deleteLocationCityById(id)LocationCityModuleDELETELocationCity
(7) /flightpassenger/flightbooking/{id}findAllFlightPassengerOfFlightBooking(id)LocationCityModuleGETFlightBooking FlightPassenger
(8) /flightpassengerfindAllFlightPassenger()LocationCityModuleGETFlightPassenger
(9) /locationregion/{id}deleteLocationRegionById(id)LocationCityModuleDELETELocationRegion
(10) /locationcity/locationregion/{id}findAllLocationCityOfLocationRegion(id)LocationCityModuleGETLocationRegion LocationCity
(11) /locationcountry/{id}findLocationCountryById(id)LocationCityModuleGETLocationCountry
(12) /locationcityinsertLocationCity(locationcity)LocationCityModulePOSTLocationCity
(13) /flightpassenger/{id}findFlightPassengerById(id)LocationCityModuleGETFlightPassenger
(14) /locationregioninsertLocationRegion(locationregion)LocationCityModulePOSTLocationRegion
(15) /locationcountryinsertLocationCountry(locationcountry)LocationCityModulePOSTLocationCountry
(16) /locationregion/locationcountry/{id}findAllLocationRegionOfLocationCountry(id)LocationCityModuleGETLocationCountry LocationRegion
(17) /locationcity/{id}updateLocationCityById(locationcity)LocationCityModulePUTLocationCity
(18) /flightpassenger/nationalitycountry/{id}findAllFlightPassengerOfNationalityCountry(id)LocationCityModuleGETLocationCountry FlightPassenger
(19) /flightpassenger/{id}deleteFlightPassengerById(id)LocationCityModuleDELETEFlightPassenger
(20) /locationcountry/{id}updateLocationCountryById(locationcountry)LocationCityModulePUTLocationCountry
(21) /locationcountryfindAllLocationCountry()LocationCityModuleGETLocationCountry
(22) /locationcityfindAllLocationCity()LocationCityModuleGETLocationCity
(23) /locationregion/{id}updateLocationRegionById(locationregion)LocationCityModulePUTLocationRegion
(24) /locationcity/{id}findLocationCityById(id)LocationCityModuleGETLocationCity
(25) /locationcity/locationcountry/{id}findAllLocationCityOfLocationCountry(id)LocationCityModuleGETLocationCountry LocationCity






8.1 FLIGHT PASSENGER


FlightPassengerLocationCityModuleBookingCom

Properties (6)

PropertyTypeEntityReferenceModule
(1) DateOfBirthDATEFlightPassenger
(2) DocumentNumberSTRINGFlightPassenger
(3) FlightBookingINTFlightPassengerFlightBookingCurrencyModule
(4) FullNameSTRINGFlightPassenger
(5) NationalityCountryINTFlightPassengerLocationCountryLocationCityModule
(6) PassengerTypeSTRINGFlightPassenger





Example:

final FlightPassenger flightpassenger = (FlightPassenger) invokeModule(LOCATION_CITY_MODULE + "/flightpassenger/" + id, FlightPassenger.class);
if (flightpassenger != null) {
    final LocationCountry nationalitycountry1 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + flightpassenger.getNationalityCountry().getId(), LocationCountry.class);
    if (nationalitycountry1 != null) {
    }
    final FlightBooking flightbooking2 = (FlightBooking) invokeModule(CURRENCY_MODULE + "/flightbooking/" + flightpassenger.getFlightBooking().getId(), FlightBooking.class);
    if (flightbooking2 != null) {
        final Booking booking3 = (Booking) invokeModule(BOOKING_MODULE + "/booking/" + flightbooking2.getBooking().getId(), Booking.class);
        if (booking3 != null) {
            final UserAccount useraccount4 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + booking3.getUserAccount().getId(), UserAccount.class);
            if (useraccount4 != null) {
                final Currency defaultcurrency5 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + useraccount4.getDefaultCurrency().getId(), Currency.class);
                if (defaultcurrency5 != null) {
                }
                final Language defaultlanguage6 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + useraccount4.getDefaultLanguage().getId(), Language.class);
                if (defaultlanguage6 != null) {
                }
            }
            final Currency currency7 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + booking3.getCurrency().getId(), Currency.class);
            if (currency7 != null) {
            }
        }
        final Currency currency8 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + flightbooking2.getCurrency().getId(), Currency.class);
        if (currency8 != null) {
        }
    }
}
return flightpassenger;


8.2 LOCATION CITY


LocationCityLocationCityModuleBookingCom

Properties (5)

PropertyTypeEntityReferenceModule
(1) LatitudeSTRINGLocationCity
(2) LocationCountryINTLocationCityLocationCountryLocationCityModule
(3) LocationRegionINTLocationCityLocationRegionLocationCityModule
(4) LongitudeSTRINGLocationCity
(5) NameSTRINGLocationCity





Example:

final LocationCity locationcity = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + id, LocationCity.class);
if (locationcity != null) {
    final LocationRegion locationregion1 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity.getLocationRegion().getId(), LocationRegion.class);
    if (locationregion1 != null) {
        final LocationCountry locationcountry2 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion1.getLocationCountry().getId(), LocationCountry.class);
        if (locationcountry2 != null) {
        }
    }
    final LocationCountry locationcountry3 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity.getLocationCountry().getId(), LocationCountry.class);
    if (locationcountry3 != null) {
    }
}
return locationcity;


8.3 LOCATION COUNTRY


LocationCountryLocationCityModuleBookingCom

Properties (2)

PropertyTypeEntityReferenceModule
(1) CodeSTRINGLocationCountry
(2) NameSTRINGLocationCountry





Example:

final LocationCountry locationcountry = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + id, LocationCountry.class);
if (locationcountry != null) {
}
return locationcountry;


8.4 LOCATION REGION


LocationRegionLocationCityModuleBookingCom

Properties (2)

PropertyTypeEntityReferenceModule
(1) LocationCountryINTLocationRegionLocationCountryLocationCityModule
(2) NameSTRINGLocationRegion





Example:

final LocationRegion locationregion = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + id, LocationRegion.class);
if (locationregion != null) {
    final LocationCountry locationcountry1 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion.getLocationCountry().getId(), LocationCountry.class);
    if (locationcountry1 != null) {
    }
}
return locationregion;


Overview

Summary

ContactDonateImprint