Overview

Summary

ContactDonateImprint


Appendix E-18: RUNWAY (UI prompt)


RunwayCountryModuleSpaceports

Properties (5)

PropertyTypeEntityReferenceModule
(1) LengthMetersINTRunway
(2) NameSTRINGRunway
(3) NotesSTRINGRunway
(4) SpaceportLONGRunwaySpaceportSpaceportModule
(5) SurfaceTypeSTRINGRunway


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /runway/{id}updateRunwayById(runway)CountryModulePUTRunway
(2) /runway/{id}deleteRunwayById(id)CountryModuleDELETERunway
(3) /runway/spaceport/{id}findAllRunwayOfSpaceport(id)CountryModuleGETSpaceport Runway
(4) /runwayfindAllRunway()CountryModuleGETRunway
(5) /runway/{id}findRunwayById(id)CountryModuleGETRunway
(6) /runwayinsertRunway(runway)CountryModulePOSTRunway





Example:

final Runway runway = (Runway) invokeModule(COUNTRY_MODULE + "/runway/" + id, Runway.class);
if (runway != null) {
    final Spaceport spaceport1 = (Spaceport) invokeModule(SPACEPORT_MODULE + "/spaceport/" + runway.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 runway;


Overview

Summary

ContactDonateImprint