Overview

Summary

ContactDonateImprint


Appendix E-19: BALLOON FLIGHT WIND LAYER (UI prompt)


BalloonFlightWindLayerProjectModuleLoons

Properties (4)

PropertyTypeEntityReferenceModule
(1) AssociationTypeSTRINGBalloonFlightWindLayer
(2) BalloonFlightINTBalloonFlightWindLayerBalloonFlightProjectModule
(3) RelevanceScoreSTRINGBalloonFlightWindLayer
(4) WindLayerINTBalloonFlightWindLayerWindLayerWindLayerModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /balloonflightwindlayer/windlayer/{id}findAllBalloonFlightWindLayerOfWindLayer(id)ProjectModuleGETWindLayer BalloonFlightWindLayer
(2) /balloonflightwindlayerfindAllBalloonFlightWindLayer()ProjectModuleGETBalloonFlightWindLayer
(3) /balloonflightwindlayer/{id}deleteBalloonFlightWindLayerById(id)ProjectModuleDELETEBalloonFlightWindLayer
(4) /balloonflightwindlayer/balloonflight/{id}findAllBalloonFlightWindLayerOfBalloonFlight(id)ProjectModuleGETBalloonFlight BalloonFlightWindLayer
(5) /balloonflightwindlayerinsertBalloonFlightWindLayer(balloonflightwindlayer)ProjectModulePOSTBalloonFlightWindLayer
(6) /balloonflightwindlayer/{id}updateBalloonFlightWindLayerById(balloonflightwindlayer)ProjectModulePUTBalloonFlightWindLayer
(7) /balloonflightwindlayer/{id}findBalloonFlightWindLayerById(id)ProjectModuleGETBalloonFlightWindLayer





Example:

final BalloonFlightWindLayer balloonflightwindlayer = (BalloonFlightWindLayer) invokeModule(PROJECT_MODULE + "/balloonflightwindlayer/" + id, BalloonFlightWindLayer.class);
if (balloonflightwindlayer != null) {
    final WindLayer windlayer1 = (WindLayer) invokeModule(WIND_LAYER_MODULE + "/windlayer/" + balloonflightwindlayer.getWindLayer().getId(), WindLayer.class);
    if (windlayer1 != null) {
    }
    final BalloonFlight balloonflight2 = (BalloonFlight) invokeModule(PROJECT_MODULE + "/balloonflight/" + balloonflightwindlayer.getBalloonFlight().getId(), BalloonFlight.class);
    if (balloonflight2 != null) {
        final BalloonModel balloonmodel3 = (BalloonModel) invokeModule(WIND_LAYER_MODULE + "/balloonmodel/" + balloonflight2.getBalloonModel().getId(), BalloonModel.class);
        if (balloonmodel3 != null) {
        }
        final Project project4 = (Project) invokeModule(PROJECT_MODULE + "/project/" + balloonflight2.getProject().getId(), Project.class);
        if (project4 != null) {
            final Company company5 = (Company) invokeModule(COMPANY_MODULE + "/company/" + project4.getCompany().getId(), Company.class);
            if (company5 != null) {
            }
        }
        final LaunchSite launchsite6 = (LaunchSite) invokeModule(LAUNCH_SITE_MODULE + "/launchsite/" + balloonflight2.getLaunchSite().getId(), LaunchSite.class);
        if (launchsite6 != null) {
            final City city7 = (City) invokeModule(REGION_MODULE + "/city/" + launchsite6.getCity().getId(), City.class);
            if (city7 != null) {
                final Region region8 = (Region) invokeModule(REGION_MODULE + "/region/" + city7.getRegion().getId(), Region.class);
                if (region8 != null) {
                    final Country country9 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + region8.getCountry().getId(), Country.class);
                    if (country9 != null) {
                    }
                }
            }
        }
    }
}
return balloonflightwindlayer;


Overview

Summary

ContactDonateImprint