Overview

Summary

ContactDonateImprint


Appendix E-1: LAUNCH PAD (UI prompt)


LaunchPadSpaceAgencyModuleSpaceports

Properties (7)

PropertyTypeEntityReferenceModule
(1) CodeSTRINGLaunchPad
(2) LatitudeSTRINGLaunchPad
(3) LongitudeSTRINGLaunchPad
(4) NameSTRINGLaunchPad
(5) NotesSTRINGLaunchPad
(6) SpaceportLONGLaunchPadSpaceportSpaceportModule
(7) StatusSTRINGLaunchPad


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /launch/launchpad/{id}findAllLaunchOfLaunchPad(id)LaunchVehicleModuleGETLaunchPad Launch
(2) /launchpad/{id}findLaunchPadById(id)SpaceAgencyModuleGETLaunchPad
(3) /launchpad/spaceport/{id}findAllLaunchPadOfSpaceport(id)SpaceAgencyModuleGETSpaceport LaunchPad
(4) /launchpad/{id}updateLaunchPadById(launchpad)SpaceAgencyModulePUTLaunchPad
(5) /launchpadfindAllLaunchPad()SpaceAgencyModuleGETLaunchPad
(6) /launchpad/{id}deleteLaunchPadById(id)SpaceAgencyModuleDELETELaunchPad
(7) /launchpadinsertLaunchPad(launchpad)SpaceAgencyModulePOSTLaunchPad





Example:

final LaunchPad launchpad = (LaunchPad) invokeModule(SPACE_AGENCY_MODULE + "/launchpad/" + id, LaunchPad.class);
if (launchpad != null) {
    final Spaceport spaceport1 = (Spaceport) invokeModule(SPACEPORT_MODULE + "/spaceport/" + launchpad.getSpaceport().getId(), Spaceport.class);
    if (spaceport1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + spaceport1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
        final Region region3 = (Region) invokeModule(SPACEPORT_MODULE + "/region/" + spaceport1.getRegion().getId(), Region.class);
        if (region3 != null) {
            final Country country4 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + region3.getCountry().getId(), Country.class);
            if (country4 != null) {
            }
        }
    }
}
return launchpad;


Overview

Summary

ContactDonateImprint