Overview

Summary

ContactDonateImprint


Appendix E-13: ZEPPELIN ENGINE (UI prompt)


ZeppelinEngineEngineModuleZeppelinFlight

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountINTZeppelinEngine
(2) EngineINTZeppelinEngineEngineEngineModule
(3) PositionSTRINGZeppelinEngine
(4) ZeppelinINTZeppelinEngineZeppelinZeppelinModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /zeppelinengineinsertZeppelinEngine(zeppelinengine)EngineModulePOSTZeppelinEngine
(2) /zeppelinengine/engine/{id}findAllZeppelinEngineOfEngine(id)EngineModuleGETEngine ZeppelinEngine
(3) /zeppelinengine/zeppelin/{id}findAllZeppelinEngineOfZeppelin(id)EngineModuleGETZeppelin ZeppelinEngine
(4) /zeppelinengine/{id}updateZeppelinEngineById(zeppelinengine)EngineModulePUTZeppelinEngine
(5) /zeppelinengine/{id}deleteZeppelinEngineById(id)EngineModuleDELETEZeppelinEngine
(6) /zeppelinenginefindAllZeppelinEngine()EngineModuleGETZeppelinEngine
(7) /zeppelinengine/{id}findZeppelinEngineById(id)EngineModuleGETZeppelinEngine





Example:

final ZeppelinEngine zeppelinengine = (ZeppelinEngine) invokeModule(ENGINE_MODULE + "/zeppelinengine/" + id, ZeppelinEngine.class);
if (zeppelinengine != null) {
    final Engine engine1 = (Engine) invokeModule(ENGINE_MODULE + "/engine/" + zeppelinengine.getEngine().getId(), Engine.class);
    if (engine1 != null) {
        final Organization manufacturer2 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + engine1.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 Zeppelin zeppelin5 = (Zeppelin) invokeModule(ZEPPELIN_MODULE + "/zeppelin/" + zeppelinengine.getZeppelin().getId(), Zeppelin.class);
    if (zeppelin5 != null) {
        final ZeppelinClass zeppelinclass6 = (ZeppelinClass) invokeModule(ORGANIZATION_MODULE + "/zeppelinclass/" + zeppelin5.getZeppelinClass().getId(), ZeppelinClass.class);
        if (zeppelinclass6 != null) {
            final Organization manufacturer7 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelinclass6.getManufacturer().getId(), Organization.class);
            if (manufacturer7 != null) {
                final Location headquarterslocation8 = (Location) invokeModule(LOCATION_MODULE + "/location/" + manufacturer7.getHeadquartersLocation().getId(), Location.class);
                if (headquarterslocation8 != null) {
                    final Country country9 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation8.getCountry().getId(), Country.class);
                    if (country9 != null) {
                    }
                }
            }
        }
        final Location homebaselocation10 = (Location) invokeModule(LOCATION_MODULE + "/location/" + zeppelin5.getHomeBaseLocation().getId(), Location.class);
        if (homebaselocation10 != null) {
            final Country country11 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + homebaselocation10.getCountry().getId(), Country.class);
            if (country11 != null) {
            }
        }
        final Organization operator12 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + zeppelin5.getOperator().getId(), Organization.class);
        if (operator12 != null) {
            final Location headquarterslocation13 = (Location) invokeModule(LOCATION_MODULE + "/location/" + operator12.getHeadquartersLocation().getId(), Location.class);
            if (headquarterslocation13 != null) {
                final Country country14 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation13.getCountry().getId(), Country.class);
                if (country14 != null) {
                }
            }
        }
    }
}
return zeppelinengine;


Overview

Summary

ContactDonateImprint