Overview

Summary

ContactDonateImprint


4. FLIGHT MODULE (UI prompt)



Module Entities (7)

EntityAliasModuleGlobal Schema
(1) BookingBookingCustomerModuleZeppelinFlight
(2) BookingSeatBookingSeatFlightModuleZeppelinFlight
(3) FlightFlightFlightModuleZeppelinFlight
(4) FlightRouteFlightRouteLocationModuleZeppelinFlight
(5) FlightSeatFlightSeatFlightModuleZeppelinFlight
(6) SeatSeatZeppelinModuleZeppelinFlight
(7) ZeppelinZeppelinZeppelinModuleZeppelinFlight

Module Interfaces (21)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /flightinsertFlight(flight)FlightModulePOSTFlight
(2) /bookingseat/flightseat/{id}findAllBookingSeatOfFlightSeat(id)FlightModuleGETFlightSeat BookingSeat
(3) /flightfindAllFlight()FlightModuleGETFlight
(4) /bookingseat/booking/{id}findAllBookingSeatOfBooking(id)FlightModuleGETBooking BookingSeat
(5) /bookingseatfindAllBookingSeat()FlightModuleGETBookingSeat
(6) /flight/{id}updateFlightById(flight)FlightModulePUTFlight
(7) /flight/{id}findFlightById(id)FlightModuleGETFlight
(8) /bookingseat/{id}deleteBookingSeatById(id)FlightModuleDELETEBookingSeat
(9) /flightseat/flight/{id}findAllFlightSeatOfFlight(id)FlightModuleGETFlight FlightSeat
(10) /flightseatfindAllFlightSeat()FlightModuleGETFlightSeat
(11) /flightseatinsertFlightSeat(flightseat)FlightModulePOSTFlightSeat
(12) /flightseat/{id}deleteFlightSeatById(id)FlightModuleDELETEFlightSeat
(13) /flightseat/{id}updateFlightSeatById(flightseat)FlightModulePUTFlightSeat
(14) /flightseat/{id}findFlightSeatById(id)FlightModuleGETFlightSeat
(15) /bookingseatinsertBookingSeat(bookingseat)FlightModulePOSTBookingSeat
(16) /flight/zeppelin/{id}findAllFlightOfZeppelin(id)FlightModuleGETZeppelin Flight
(17) /flight/flightroute/{id}findAllFlightOfFlightRoute(id)FlightModuleGETFlightRoute Flight
(18) /bookingseat/{id}findBookingSeatById(id)FlightModuleGETBookingSeat
(19) /bookingseat/{id}updateBookingSeatById(bookingseat)FlightModulePUTBookingSeat
(20) /flight/{id}deleteFlightById(id)FlightModuleDELETEFlight
(21) /flightseat/seat/{id}findAllFlightSeatOfSeat(id)FlightModuleGETSeat FlightSeat






4.1 BOOKING SEAT


BookingSeatFlightModuleZeppelinFlight

Properties (4)

PropertyTypeEntityReferenceModule
(1) BookingINTBookingSeatBookingCustomerModule
(2) CurrencySTRINGBookingSeat
(3) FlightSeatINTBookingSeatFlightSeatFlightModule
(4) PriceSTRINGBookingSeat





Example:

final BookingSeat bookingseat = (BookingSeat) invokeModule(FLIGHT_MODULE + "/bookingseat/" + id, BookingSeat.class);
if (bookingseat != null) {
    final FlightSeat flightseat1 = (FlightSeat) invokeModule(FLIGHT_MODULE + "/flightseat/" + bookingseat.getFlightSeat().getId(), FlightSeat.class);
    if (flightseat1 != null) {
        final Seat seat2 = (Seat) invokeModule(ZEPPELIN_MODULE + "/seat/" + flightseat1.getSeat().getId(), Seat.class);
        if (seat2 != null) {
            final Zeppelin zeppelin3 = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + seat2.getZeppelin().getId(), Zeppelin.class);
            if (zeppelin3 != null) {
                final ZeppelinClass zeppelinclass4 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin3.getZeppelinClass().getId(), ZeppelinClass.class);
                if (zeppelinclass4 != null) {
                    final Organization manufacturer5 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass4.getManufacturer().getId(), Organization.class);
                    if (manufacturer5 != null) {
                        final Location headquarterslocation6 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer5.getHeadquartersLocation().getId(), Location.class);
                        if (headquarterslocation6 != null) {
                            final Country country7 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation6.getCountry().getId(), Country.class);
                            if (country7 != null) {
                            }
                        }
                    }
                }
                final Location homebaselocation8 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin3.getHomeBaseLocation().getId(), Location.class);
                if (homebaselocation8 != null) {
                    final Country country9 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation8.getCountry().getId(), Country.class);
                    if (country9 != null) {
                    }
                }
                final Organization operator10 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin3.getOperator().getId(), Organization.class);
                if (operator10 != null) {
                    final Location headquarterslocation11 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator10.getHeadquartersLocation().getId(), Location.class);
                    if (headquarterslocation11 != null) {
                        final Country country12 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation11.getCountry().getId(), Country.class);
                        if (country12 != null) {
                        }
                    }
                }
            }
        }
        final Flight flight13 = (Flight) invokeModule(FLIGHT_MODULE + "/flight/" + flightseat1.getFlight().getId(), Flight.class);
        if (flight13 != null) {
            final FlightRoute flightroute14 = (FlightRoute) invokeModule(LOCATION_MODULE + "/flightroute/" + flight13.getFlightRoute().getId(), FlightRoute.class);
            if (flightroute14 != null) {
                final Location departurelocation15 = (Location) invokeModule(LOCATION_MODULE + "/location/" + flightroute14.getDepartureLocation().getId(), Location.class);
                if (departurelocation15 != null) {
                    final Country country16 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + departurelocation15.getCountry().getId(), Country.class);
                    if (country16 != null) {
                    }
                }
                final Hangar defaulthangar17 = (Hangar) invokeModule(LOCATION_MODULE + "/hangar/" + flightroute14.getDefaultHangar().getId(), Hangar.class);
                if (defaulthangar17 != null) {
                    final Location location18 = (Location) invokeModule(LOCATION_MODULE + "/location/" + defaulthangar17.getLocation().getId(), Location.class);
                    if (location18 != null) {
                        final Country country19 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + location18.getCountry().getId(), Country.class);
                        if (country19 != null) {
                        }
                    }
                }
                final Location arrivallocation20 = (Location) invokeModule(LOCATION_MODULE + "/location/" + flightroute14.getArrivalLocation().getId(), Location.class);
                if (arrivallocation20 != null) {
                    final Country country21 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + arrivallocation20.getCountry().getId(), Country.class);
                    if (country21 != null) {
                    }
                }
            }
            final Zeppelin zeppelin22 = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + flight13.getZeppelin().getId(), Zeppelin.class);
            if (zeppelin22 != null) {
                final ZeppelinClass zeppelinclass23 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin22.getZeppelinClass().getId(), ZeppelinClass.class);
                if (zeppelinclass23 != null) {
                    final Organization manufacturer24 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass23.getManufacturer().getId(), Organization.class);
                    if (manufacturer24 != null) {
                        final Location headquarterslocation25 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer24.getHeadquartersLocation().getId(), Location.class);
                        if (headquarterslocation25 != null) {
                            final Country country26 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation25.getCountry().getId(), Country.class);
                            if (country26 != null) {
                            }
                        }
                    }
                }
                final Location homebaselocation27 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin22.getHomeBaseLocation().getId(), Location.class);
                if (homebaselocation27 != null) {
                    final Country country28 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation27.getCountry().getId(), Country.class);
                    if (country28 != null) {
                    }
                }
                final Organization operator29 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin22.getOperator().getId(), Organization.class);
                if (operator29 != null) {
                    final Location headquarterslocation30 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator29.getHeadquartersLocation().getId(), Location.class);
                    if (headquarterslocation30 != null) {
                        final Country country31 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation30.getCountry().getId(), Country.class);
                        if (country31 != null) {
                        }
                    }
                }
            }
        }
    }
    final Booking booking32 = (Booking) invokeModule(CUSTOMER_MODULE + "/booking/" + bookingseat.getBooking().getId(), Booking.class);
    if (booking32 != null) {
        final Flight flight33 = (Flight) invokeModule(FLIGHT_MODULE + "/flight/" + booking32.getFlight().getId(), Flight.class);
        if (flight33 != null) {
            final FlightRoute flightroute34 = (FlightRoute) invokeModule(LOCATION_MODULE + "/flightroute/" + flight33.getFlightRoute().getId(), FlightRoute.class);
            if (flightroute34 != null) {
                final Location departurelocation35 = (Location) invokeModule(LOCATION_MODULE + "/location/" + flightroute34.getDepartureLocation().getId(), Location.class);
                if (departurelocation35 != null) {
                    final Country country36 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + departurelocation35.getCountry().getId(), Country.class);
                    if (country36 != null) {
                    }
                }
                final Hangar defaulthangar37 = (Hangar) invokeModule(LOCATION_MODULE + "/hangar/" + flightroute34.getDefaultHangar().getId(), Hangar.class);
                if (defaulthangar37 != null) {
                    final Location location38 = (Location) invokeModule(LOCATION_MODULE + "/location/" + defaulthangar37.getLocation().getId(), Location.class);
                    if (location38 != null) {
                        final Country country39 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + location38.getCountry().getId(), Country.class);
                        if (country39 != null) {
                        }
                    }
                }
                final Location arrivallocation40 = (Location) invokeModule(LOCATION_MODULE + "/location/" + flightroute34.getArrivalLocation().getId(), Location.class);
                if (arrivallocation40 != null) {
                    final Country country41 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + arrivallocation40.getCountry().getId(), Country.class);
                    if (country41 != null) {
                    }
                }
            }
            final Zeppelin zeppelin42 = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + flight33.getZeppelin().getId(), Zeppelin.class);
            if (zeppelin42 != null) {
                final ZeppelinClass zeppelinclass43 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin42.getZeppelinClass().getId(), ZeppelinClass.class);
                if (zeppelinclass43 != null) {
                    final Organization manufacturer44 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass43.getManufacturer().getId(), Organization.class);
                    if (manufacturer44 != null) {
                        final Location headquarterslocation45 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer44.getHeadquartersLocation().getId(), Location.class);
                        if (headquarterslocation45 != null) {
                            final Country country46 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation45.getCountry().getId(), Country.class);
                            if (country46 != null) {
                            }
                        }
                    }
                }
                final Location homebaselocation47 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin42.getHomeBaseLocation().getId(), Location.class);
                if (homebaselocation47 != null) {
                    final Country country48 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation47.getCountry().getId(), Country.class);
                    if (country48 != null) {
                    }
                }
                final Organization operator49 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin42.getOperator().getId(), Organization.class);
                if (operator49 != null) {
                    final Location headquarterslocation50 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator49.getHeadquartersLocation().getId(), Location.class);
                    if (headquarterslocation50 != null) {
                        final Country country51 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation50.getCountry().getId(), Country.class);
                        if (country51 != null) {
                        }
                    }
                }
            }
        }
        final Customer customer52 = (Customer) invokeModule(CUSTOMER_MODULE + "/customer/" + booking32.getCustomer().getId(), Customer.class);
        if (customer52 != null) {
            final Country country53 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + customer52.getCountry().getId(), Country.class);
            if (country53 != null) {
            }
        }
    }
}
return bookingseat;


4.2 FLIGHT


FlightFlightModuleZeppelinFlight

Properties (6)

PropertyTypeEntityReferenceModule
(1) FlightNumberSTRINGFlight
(2) FlightRouteINTFlightFlightRouteLocationModule
(3) ScheduledArrivalDATEFlight
(4) ScheduledDepartureDATEFlight
(5) StatusSTRINGFlight
(6) ZeppelinINTFlightZeppelinZeppelinModule





Example:

final Flight flight = (Flight) invokeModule(FLIGHT_MODULE + "/flight/" + id, Flight.class);
if (flight != null) {
    final FlightRoute flightroute1 = (FlightRoute) invokeModule(LOCATION_MODULE + "/flightroute/" + flight.getFlightRoute().getId(), FlightRoute.class);
    if (flightroute1 != null) {
        final Location departurelocation2 = (Location) invokeModule(LOCATION_MODULE + "/location/" + flightroute1.getDepartureLocation().getId(), Location.class);
        if (departurelocation2 != null) {
            final Country country3 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + departurelocation2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final Hangar defaulthangar4 = (Hangar) invokeModule(LOCATION_MODULE + "/hangar/" + flightroute1.getDefaultHangar().getId(), Hangar.class);
        if (defaulthangar4 != null) {
            final Location location5 = (Location) invokeModule(LOCATION_MODULE + "/location/" + defaulthangar4.getLocation().getId(), Location.class);
            if (location5 != null) {
                final Country country6 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + location5.getCountry().getId(), Country.class);
                if (country6 != null) {
                }
            }
        }
        final Location arrivallocation7 = (Location) invokeModule(LOCATION_MODULE + "/location/" + flightroute1.getArrivalLocation().getId(), Location.class);
        if (arrivallocation7 != null) {
            final Country country8 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + arrivallocation7.getCountry().getId(), Country.class);
            if (country8 != null) {
            }
        }
    }
    final Zeppelin zeppelin9 = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + flight.getZeppelin().getId(), Zeppelin.class);
    if (zeppelin9 != null) {
        final ZeppelinClass zeppelinclass10 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin9.getZeppelinClass().getId(), ZeppelinClass.class);
        if (zeppelinclass10 != null) {
            final Organization manufacturer11 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass10.getManufacturer().getId(), Organization.class);
            if (manufacturer11 != null) {
                final Location headquarterslocation12 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer11.getHeadquartersLocation().getId(), Location.class);
                if (headquarterslocation12 != null) {
                    final Country country13 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation12.getCountry().getId(), Country.class);
                    if (country13 != null) {
                    }
                }
            }
        }
        final Location homebaselocation14 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin9.getHomeBaseLocation().getId(), Location.class);
        if (homebaselocation14 != null) {
            final Country country15 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation14.getCountry().getId(), Country.class);
            if (country15 != null) {
            }
        }
        final Organization operator16 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin9.getOperator().getId(), Organization.class);
        if (operator16 != null) {
            final Location headquarterslocation17 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator16.getHeadquartersLocation().getId(), Location.class);
            if (headquarterslocation17 != null) {
                final Country country18 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation17.getCountry().getId(), Country.class);
                if (country18 != null) {
                }
            }
        }
    }
}
return flight;


4.3 FLIGHT SEAT


FlightSeatFlightModuleZeppelinFlight

Properties (5)

PropertyTypeEntityReferenceModule
(1) CurrencySTRINGFlightSeat
(2) FlightINTFlightSeatFlightFlightModule
(3) PriceSTRINGFlightSeat
(4) SeatINTFlightSeatSeatZeppelinModule
(5) SeatStatusSTRINGFlightSeat





Example:

final FlightSeat flightseat = (FlightSeat) invokeModule(FLIGHT_MODULE + "/flightseat/" + id, FlightSeat.class);
if (flightseat != null) {
    final Seat seat1 = (Seat) invokeModule(ZEPPELIN_MODULE + "/seat/" + flightseat.getSeat().getId(), Seat.class);
    if (seat1 != null) {
        final Zeppelin zeppelin2 = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + seat1.getZeppelin().getId(), Zeppelin.class);
        if (zeppelin2 != null) {
            final ZeppelinClass zeppelinclass3 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin2.getZeppelinClass().getId(), ZeppelinClass.class);
            if (zeppelinclass3 != null) {
                final Organization manufacturer4 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass3.getManufacturer().getId(), Organization.class);
                if (manufacturer4 != null) {
                    final Location headquarterslocation5 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer4.getHeadquartersLocation().getId(), Location.class);
                    if (headquarterslocation5 != null) {
                        final Country country6 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation5.getCountry().getId(), Country.class);
                        if (country6 != null) {
                        }
                    }
                }
            }
            final Location homebaselocation7 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin2.getHomeBaseLocation().getId(), Location.class);
            if (homebaselocation7 != null) {
                final Country country8 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation7.getCountry().getId(), Country.class);
                if (country8 != null) {
                }
            }
            final Organization operator9 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin2.getOperator().getId(), Organization.class);
            if (operator9 != null) {
                final Location headquarterslocation10 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator9.getHeadquartersLocation().getId(), Location.class);
                if (headquarterslocation10 != null) {
                    final Country country11 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation10.getCountry().getId(), Country.class);
                    if (country11 != null) {
                    }
                }
            }
        }
    }
    final Flight flight12 = (Flight) invokeModule(FLIGHT_MODULE + "/flight/" + flightseat.getFlight().getId(), Flight.class);
    if (flight12 != null) {
        final FlightRoute flightroute13 = (FlightRoute) invokeModule(LOCATION_MODULE + "/flightroute/" + flight12.getFlightRoute().getId(), FlightRoute.class);
        if (flightroute13 != null) {
            final Location departurelocation14 = (Location) invokeModule(LOCATION_MODULE + "/location/" + flightroute13.getDepartureLocation().getId(), Location.class);
            if (departurelocation14 != null) {
                final Country country15 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + departurelocation14.getCountry().getId(), Country.class);
                if (country15 != null) {
                }
            }
            final Hangar defaulthangar16 = (Hangar) invokeModule(LOCATION_MODULE + "/hangar/" + flightroute13.getDefaultHangar().getId(), Hangar.class);
            if (defaulthangar16 != null) {
                final Location location17 = (Location) invokeModule(LOCATION_MODULE + "/location/" + defaulthangar16.getLocation().getId(), Location.class);
                if (location17 != null) {
                    final Country country18 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + location17.getCountry().getId(), Country.class);
                    if (country18 != null) {
                    }
                }
            }
            final Location arrivallocation19 = (Location) invokeModule(LOCATION_MODULE + "/location/" + flightroute13.getArrivalLocation().getId(), Location.class);
            if (arrivallocation19 != null) {
                final Country country20 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + arrivallocation19.getCountry().getId(), Country.class);
                if (country20 != null) {
                }
            }
        }
        final Zeppelin zeppelin21 = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + flight12.getZeppelin().getId(), Zeppelin.class);
        if (zeppelin21 != null) {
            final ZeppelinClass zeppelinclass22 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin21.getZeppelinClass().getId(), ZeppelinClass.class);
            if (zeppelinclass22 != null) {
                final Organization manufacturer23 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass22.getManufacturer().getId(), Organization.class);
                if (manufacturer23 != null) {
                    final Location headquarterslocation24 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer23.getHeadquartersLocation().getId(), Location.class);
                    if (headquarterslocation24 != null) {
                        final Country country25 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation24.getCountry().getId(), Country.class);
                        if (country25 != null) {
                        }
                    }
                }
            }
            final Location homebaselocation26 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin21.getHomeBaseLocation().getId(), Location.class);
            if (homebaselocation26 != null) {
                final Country country27 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation26.getCountry().getId(), Country.class);
                if (country27 != null) {
                }
            }
            final Organization operator28 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin21.getOperator().getId(), Organization.class);
            if (operator28 != null) {
                final Location headquarterslocation29 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator28.getHeadquartersLocation().getId(), Location.class);
                if (headquarterslocation29 != null) {
                    final Country country30 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation29.getCountry().getId(), Country.class);
                    if (country30 != null) {
                    }
                }
            }
        }
    }
}
return flightseat;


Overview

Summary

ContactDonateImprint