Overview

Summary

ContactDonateImprint


12. ZEPPELIN MODULE (UI prompt)



Module Entities (11)

EntityAliasModuleGlobal Schema
(1) AccidentAccidentLocationModuleZeppelinFlight
(2) EventEventOrganizationModuleZeppelinFlight
(3) FlightFlightFlightModuleZeppelinFlight
(4) FlightSeatFlightSeatFlightModuleZeppelinFlight
(5) LocationLocationLocationModuleZeppelinFlight
(6) MissionMissionMissionModuleZeppelinFlight
(7) OrganizationOrganizationOrganizationModuleZeppelinFlight
(8) SeatSeatZeppelinModuleZeppelinFlight
(9) ZeppelinZeppelinZeppelinModuleZeppelinFlight
(10) ZeppelinClassZeppelinClassOrganizationModuleZeppelinFlight
(11) ZeppelinEngineZeppelinEngineEngineModuleZeppelinFlight

Module Interfaces (14)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /zeppelin/{id}updateZeppelinById(zeppelin)ZeppelinModulePUTZeppelin
(2) /seat/{id}deleteSeatById(id)ZeppelinModuleDELETESeat
(3) /zeppelininsertZeppelin(zeppelin)ZeppelinModulePOSTZeppelin
(4) /seatinsertSeat(seat)ZeppelinModulePOSTSeat
(5) /seatfindAllSeat()ZeppelinModuleGETSeat
(6) /zeppelin/operator/{id}findAllZeppelinOfOperator(id)ZeppelinModuleGETOrganization Zeppelin
(7) /zeppelin/{id}findZeppelinById(id)ZeppelinModuleGETZeppelin
(8) /seat/{id}updateSeatById(seat)ZeppelinModulePUTSeat
(9) /zeppelin/homebaselocation/{id}findAllZeppelinOfHomeBaseLocation(id)ZeppelinModuleGETLocation Zeppelin
(10) /seat/{id}findSeatById(id)ZeppelinModuleGETSeat
(11) /zeppelinfindAllZeppelin()ZeppelinModuleGETZeppelin
(12) /zeppelin/{id}deleteZeppelinById(id)ZeppelinModuleDELETEZeppelin
(13) /seat/zeppelin/{id}findAllSeatOfZeppelin(id)ZeppelinModuleGETZeppelin Seat
(14) /zeppelin/zeppelinclass/{id}findAllZeppelinOfZeppelinClass(id)ZeppelinModuleGETZeppelinClass Zeppelin






12.1 SEAT


SeatZeppelinModuleZeppelinFlight

Properties (3)

PropertyTypeEntityReferenceModule
(1) SeatClassSTRINGSeat
(2) SeatNumberSTRINGSeat
(3) ZeppelinINTSeatZeppelinZeppelinModule





Example:

final Seat seat = (Seat) invokeModule(ZEPPELIN_MODULE + "/seat/" + id, Seat.class);
if (seat != null) {
    final Zeppelin zeppelin1 = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + seat.getZeppelin().getId(), Zeppelin.class);
    if (zeppelin1 != null) {
        final ZeppelinClass zeppelinclass2 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin1.getZeppelinClass().getId(), ZeppelinClass.class);
        if (zeppelinclass2 != null) {
            final Organization manufacturer3 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass2.getManufacturer().getId(), Organization.class);
            if (manufacturer3 != null) {
                final Location headquarterslocation4 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer3.getHeadquartersLocation().getId(), Location.class);
                if (headquarterslocation4 != null) {
                    final Country country5 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation4.getCountry().getId(), Country.class);
                    if (country5 != null) {
                    }
                }
            }
        }
        final Location homebaselocation6 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin1.getHomeBaseLocation().getId(), Location.class);
        if (homebaselocation6 != null) {
            final Country country7 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation6.getCountry().getId(), Country.class);
            if (country7 != null) {
            }
        }
        final Organization operator8 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin1.getOperator().getId(), Organization.class);
        if (operator8 != null) {
            final Location headquarterslocation9 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator8.getHeadquartersLocation().getId(), Location.class);
            if (headquarterslocation9 != null) {
                final Country country10 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation9.getCountry().getId(), Country.class);
                if (country10 != null) {
                }
            }
        }
    }
}
return seat;


12.2 ZEPPELIN


ZeppelinZeppelinModuleZeppelinFlight

Properties (10)

PropertyTypeEntityReferenceModule
(1) CodeSTRINGZeppelin
(2) ConstructionNumberSTRINGZeppelin
(3) FirstFlightDateDATEZeppelin
(4) HomeBaseLocationINTZeppelinLocationLocationModule
(5) LastFlightDateDATEZeppelin
(6) NameSTRINGZeppelin
(7) NotesSTRINGZeppelin
(8) OperatorINTZeppelinOrganizationOrganizationModule
(9) StatusSTRINGZeppelin
(10) ZeppelinClassINTZeppelinZeppelinClassOrganizationModule





Example:

final Zeppelin zeppelin = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + id, Zeppelin.class);
if (zeppelin != null) {
    final ZeppelinClass zeppelinclass1 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin.getZeppelinClass().getId(), ZeppelinClass.class);
    if (zeppelinclass1 != null) {
        final Organization manufacturer2 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass1.getManufacturer().getId(), Organization.class);
        if (manufacturer2 != null) {
            final Location headquarterslocation3 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer2.getHeadquartersLocation().getId(), Location.class);
            if (headquarterslocation3 != null) {
                final Country country4 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation3.getCountry().getId(), Country.class);
                if (country4 != null) {
                }
            }
        }
    }
    final Location homebaselocation5 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin.getHomeBaseLocation().getId(), Location.class);
    if (homebaselocation5 != null) {
        final Country country6 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation5.getCountry().getId(), Country.class);
        if (country6 != null) {
        }
    }
    final Organization operator7 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin.getOperator().getId(), Organization.class);
    if (operator7 != null) {
        final Location headquarterslocation8 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator7.getHeadquartersLocation().getId(), Location.class);
        if (headquarterslocation8 != null) {
            final Country country9 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation8.getCountry().getId(), Country.class);
            if (country9 != null) {
            }
        }
    }
}
return zeppelin;


Overview

Summary

ContactDonateImprint