Overview

Summary

ContactDonateImprint


Appendix E-7: TEST FLIGHT (UI prompt)


TestFlightLaunchVehicleModuleSpaceX

Properties (8)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGTestFlight
(2) LaunchVehicleINTTestFlightLaunchVehicleLaunchVehicleModule
(3) MissionINTTestFlightMissionMissionModule
(4) NotesSTRINGTestFlight
(5) RocketStageINTTestFlightRocketStageLaunchVehicleModule
(6) SpacecraftINTTestFlightSpacecraftMissionModule
(7) TestSiteINTTestFlightTestSiteLaunchVehicleModule
(8) TestTypeSTRINGTestFlight


Module Interfaces (10)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /testflight/launchvehicle/{id}findAllTestFlightOfLaunchVehicle(id)LaunchVehicleModuleGETLaunchVehicle TestFlight
(2) /testflightfindAllTestFlight()LaunchVehicleModuleGETTestFlight
(3) /testflight/{id}deleteTestFlightById(id)LaunchVehicleModuleDELETETestFlight
(4) /testflight/rocketstage/{id}findAllTestFlightOfRocketStage(id)LaunchVehicleModuleGETRocketStage TestFlight
(5) /testflight/testsite/{id}findAllTestFlightOfTestSite(id)LaunchVehicleModuleGETTestSite TestFlight
(6) /testflight/spacecraft/{id}findAllTestFlightOfSpacecraft(id)LaunchVehicleModuleGETSpacecraft TestFlight
(7) /testflight/{id}updateTestFlightById(testflight)LaunchVehicleModulePUTTestFlight
(8) /testflightinsertTestFlight(testflight)LaunchVehicleModulePOSTTestFlight
(9) /testflight/{id}findTestFlightById(id)LaunchVehicleModuleGETTestFlight
(10) /testflight/mission/{id}findAllTestFlightOfMission(id)LaunchVehicleModuleGETMission TestFlight





Example:

final TestFlight testflight = (TestFlight) invokeModule(LAUNCH_VEHICLE_MODULE + "/testflight/" + id, TestFlight.class);
if (testflight != null) {
    final Spacecraft spacecraft1 = (Spacecraft) invokeModule(MISSION_MODULE + "/spacecraft/" + testflight.getSpacecraft().getId(), Spacecraft.class);
    if (spacecraft1 != null) {
        final Company company2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + spacecraft1.getCompany().getId(), Company.class);
        if (company2 != null) {
        }
    }
    final Mission mission3 = (Mission) invokeModule(MISSION_MODULE + "/mission/" + testflight.getMission().getId(), Mission.class);
    if (mission3 != null) {
        final Spacecraft spacecraft4 = (Spacecraft) invokeModule(MISSION_MODULE + "/spacecraft/" + mission3.getSpacecraft().getId(), Spacecraft.class);
        if (spacecraft4 != null) {
            final Company company5 = (Company) invokeModule(COMPANY_MODULE + "/company/" + spacecraft4.getCompany().getId(), Company.class);
            if (company5 != null) {
            }
        }
        final Contract contract6 = (Contract) invokeModule(COMPANY_MODULE + "/contract/" + mission3.getContract().getId(), Contract.class);
        if (contract6 != null) {
            final Program program7 = (Program) invokeModule(COMPANY_MODULE + "/program/" + contract6.getProgram().getId(), Program.class);
            if (program7 != null) {
                final Company company8 = (Company) invokeModule(COMPANY_MODULE + "/company/" + program7.getCompany().getId(), Company.class);
                if (company8 != null) {
                }
            }
            final Company company9 = (Company) invokeModule(COMPANY_MODULE + "/company/" + contract6.getCompany().getId(), Company.class);
            if (company9 != null) {
            }
            final Customer customer10 = (Customer) invokeModule(CUSTOMER_MODULE + "/customer/" + contract6.getCustomer().getId(), Customer.class);
            if (customer10 != null) {
            }
        }
        final Customer customer11 = (Customer) invokeModule(CUSTOMER_MODULE + "/customer/" + mission3.getCustomer().getId(), Customer.class);
        if (customer11 != null) {
        }
        final Company company12 = (Company) invokeModule(COMPANY_MODULE + "/company/" + mission3.getCompany().getId(), Company.class);
        if (company12 != null) {
        }
        final LaunchVehicle launchvehicle13 = (LaunchVehicle) invokeModule(LAUNCH_VEHICLE_MODULE + "/launchvehicle/" + mission3.getLaunchVehicle().getId(), LaunchVehicle.class);
        if (launchvehicle13 != null) {
            final Company company14 = (Company) invokeModule(COMPANY_MODULE + "/company/" + launchvehicle13.getCompany().getId(), Company.class);
            if (company14 != null) {
            }
        }
        final LandingSite landingsite15 = (LandingSite) invokeModule(MISSION_MODULE + "/landingsite/" + mission3.getLandingSite().getId(), LandingSite.class);
        if (landingsite15 != null) {
            final Facility facility16 = (Facility) invokeModule(FACILITY_MODULE + "/facility/" + landingsite15.getFacility().getId(), Facility.class);
            if (facility16 != null) {
                final Company company17 = (Company) invokeModule(COMPANY_MODULE + "/company/" + facility16.getCompany().getId(), Company.class);
                if (company17 != null) {
                }
            }
        }
        final Program program18 = (Program) invokeModule(COMPANY_MODULE + "/program/" + mission3.getProgram().getId(), Program.class);
        if (program18 != null) {
            final Company company19 = (Company) invokeModule(COMPANY_MODULE + "/company/" + program18.getCompany().getId(), Company.class);
            if (company19 != null) {
            }
        }
        final MissionType missiontype20 = (MissionType) invokeModule(MISSION_MODULE + "/missiontype/" + mission3.getMissionType().getId(), MissionType.class);
        if (missiontype20 != null) {
        }
        final Orbit orbit21 = (Orbit) invokeModule(MISSION_MODULE + "/orbit/" + mission3.getOrbit().getId(), Orbit.class);
        if (orbit21 != null) {
        }
        final LaunchSite launchsite22 = (LaunchSite) invokeModule(FACILITY_MODULE + "/launchsite/" + mission3.getLaunchSite().getId(), LaunchSite.class);
        if (launchsite22 != null) {
            final Facility facility23 = (Facility) invokeModule(FACILITY_MODULE + "/facility/" + launchsite22.getFacility().getId(), Facility.class);
            if (facility23 != null) {
                final Company company24 = (Company) invokeModule(COMPANY_MODULE + "/company/" + facility23.getCompany().getId(), Company.class);
                if (company24 != null) {
                }
            }
        }
    }
    final RocketStage rocketstage25 = (RocketStage) invokeModule(LAUNCH_VEHICLE_MODULE + "/rocketstage/" + testflight.getRocketStage().getId(), RocketStage.class);
    if (rocketstage25 != null) {
        final LaunchVehicle launchvehicle26 = (LaunchVehicle) invokeModule(LAUNCH_VEHICLE_MODULE + "/launchvehicle/" + rocketstage25.getLaunchVehicle().getId(), LaunchVehicle.class);
        if (launchvehicle26 != null) {
            final Company company27 = (Company) invokeModule(COMPANY_MODULE + "/company/" + launchvehicle26.getCompany().getId(), Company.class);
            if (company27 != null) {
            }
        }
    }
    final TestSite testsite28 = (TestSite) invokeModule(LAUNCH_VEHICLE_MODULE + "/testsite/" + testflight.getTestSite().getId(), TestSite.class);
    if (testsite28 != null) {
        final Facility facility29 = (Facility) invokeModule(FACILITY_MODULE + "/facility/" + testsite28.getFacility().getId(), Facility.class);
        if (facility29 != null) {
            final Company company30 = (Company) invokeModule(COMPANY_MODULE + "/company/" + facility29.getCompany().getId(), Company.class);
            if (company30 != null) {
            }
        }
    }
    final LaunchVehicle launchvehicle31 = (LaunchVehicle) invokeModule(LAUNCH_VEHICLE_MODULE + "/launchvehicle/" + testflight.getLaunchVehicle().getId(), LaunchVehicle.class);
    if (launchvehicle31 != null) {
        final Company company32 = (Company) invokeModule(COMPANY_MODULE + "/company/" + launchvehicle31.getCompany().getId(), Company.class);
        if (company32 != null) {
        }
    }
}
return testflight;


Overview

Summary

ContactDonateImprint