Overview

Summary

ContactDonateImprint


Appendix E-5: SPACEPORT LAUNCH VEHICLE USAGE (UI prompt)


SpaceportLaunchVehicleUsageOperatorModuleSpaceports

Properties (6)

PropertyTypeEntityReferenceModule
(1) FromDateDATESpaceportLaunchVehicleUsage
(2) IsPlannedBOOLSpaceportLaunchVehicleUsage
(3) LaunchVehicleLONGSpaceportLaunchVehicleUsageLaunchVehicleLaunchVehicleModule
(4) NotesSTRINGSpaceportLaunchVehicleUsage
(5) SpaceportLONGSpaceportLaunchVehicleUsageSpaceportSpaceportModule
(6) ToDateDATESpaceportLaunchVehicleUsage


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /spaceportlaunchvehicleusage/launchvehicle/{id}findAllSpaceportLaunchVehicleUsageOfLaunchVehicle(id)OperatorModuleGETLaunchVehicle SpaceportLaunchVehicleUsage
(2) /spaceportlaunchvehicleusage/{id}deleteSpaceportLaunchVehicleUsageById(id)OperatorModuleDELETESpaceportLaunchVehicleUsage
(3) /spaceportlaunchvehicleusageinsertSpaceportLaunchVehicleUsage(spaceportlaunchvehicleusage)OperatorModulePOSTSpaceportLaunchVehicleUsage
(4) /spaceportlaunchvehicleusage/spaceport/{id}findAllSpaceportLaunchVehicleUsageOfSpaceport(id)OperatorModuleGETSpaceport SpaceportLaunchVehicleUsage
(5) /spaceportlaunchvehicleusage/{id}findSpaceportLaunchVehicleUsageById(id)OperatorModuleGETSpaceportLaunchVehicleUsage
(6) /spaceportlaunchvehicleusagefindAllSpaceportLaunchVehicleUsage()OperatorModuleGETSpaceportLaunchVehicleUsage
(7) /spaceportlaunchvehicleusage/{id}updateSpaceportLaunchVehicleUsageById(spaceportlaunchvehicleusage)OperatorModulePUTSpaceportLaunchVehicleUsage





Example:

final SpaceportLaunchVehicleUsage spaceportlaunchvehicleusage = (SpaceportLaunchVehicleUsage) invokeModule(OPERATOR_MODULE + "/spaceportlaunchvehicleusage/" + id, SpaceportLaunchVehicleUsage.class);
if (spaceportlaunchvehicleusage != null) {
    final LaunchVehicle launchvehicle1 = (LaunchVehicle) invokeModule(LAUNCH_VEHICLE_MODULE + "/launchvehicle/" + spaceportlaunchvehicleusage.getLaunchVehicle().getId(), LaunchVehicle.class);
    if (launchvehicle1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + launchvehicle1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
        final Operator operator3 = (Operator) invokeModule(OPERATOR_MODULE + "/operator/" + launchvehicle1.getOperator().getId(), Operator.class);
        if (operator3 != null) {
            final Country country4 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + operator3.getCountry().getId(), Country.class);
            if (country4 != null) {
            }
        }
    }
    final Spaceport spaceport5 = (Spaceport) invokeModule(SPACEPORT_MODULE + "/spaceport/" + spaceportlaunchvehicleusage.getSpaceport().getId(), Spaceport.class);
    if (spaceport5 != null) {
        final Country country6 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + spaceport5.getCountry().getId(), Country.class);
        if (country6 != null) {
        }
        final Region region7 = (Region) invokeModule(SPACEPORT_MODULE + "/region/" + spaceport5.getRegion().getId(), Region.class);
        if (region7 != null) {
            final Country country8 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + region7.getCountry().getId(), Country.class);
            if (country8 != null) {
            }
        }
    }
}
return spaceportlaunchvehicleusage;


Overview

Summary

ContactDonateImprint