Overview

Summary

ContactDonateImprint


Appendix E-19: AIRSPACE RESTRICTION (UI prompt)


AirspaceRestrictionSpaceportModuleSpaceports

Properties (5)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGAirspaceRestriction
(2) DirectionSTRINGAirspaceRestriction
(3) DistanceKmSTRINGAirspaceRestriction
(4) NameSTRINGAirspaceRestriction
(5) SpaceportLONGAirspaceRestrictionSpaceportSpaceportModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /airspacerestriction/{id}findAirspaceRestrictionById(id)SpaceportModuleGETAirspaceRestriction
(2) /airspacerestrictionfindAllAirspaceRestriction()SpaceportModuleGETAirspaceRestriction
(3) /airspacerestrictioninsertAirspaceRestriction(airspacerestriction)SpaceportModulePOSTAirspaceRestriction
(4) /airspacerestriction/{id}deleteAirspaceRestrictionById(id)SpaceportModuleDELETEAirspaceRestriction
(5) /airspacerestriction/spaceport/{id}findAllAirspaceRestrictionOfSpaceport(id)SpaceportModuleGETSpaceport AirspaceRestriction
(6) /airspacerestriction/{id}updateAirspaceRestrictionById(airspacerestriction)SpaceportModulePUTAirspaceRestriction





Example:

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


Overview

Summary

ContactDonateImprint