Overview

Summary

ContactDonateImprint


Appendix E-6: SPACEPORT AGENCY ROLE (UI prompt)


SpaceportAgencyRoleSpaceAgencyModuleSpaceports

Properties (5)

PropertyTypeEntityReferenceModule
(1) FromDateDATESpaceportAgencyRole
(2) RoleSTRINGSpaceportAgencyRole
(3) SpaceAgencyLONGSpaceportAgencyRoleSpaceAgencySpaceAgencyModule
(4) SpaceportLONGSpaceportAgencyRoleSpaceportSpaceportModule
(5) ToDateDATESpaceportAgencyRole


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /spaceportagencyrole/spaceport/{id}findAllSpaceportAgencyRoleOfSpaceport(id)SpaceAgencyModuleGETSpaceport SpaceportAgencyRole
(2) /spaceportagencyrolefindAllSpaceportAgencyRole()SpaceAgencyModuleGETSpaceportAgencyRole
(3) /spaceportagencyrole/{id}findSpaceportAgencyRoleById(id)SpaceAgencyModuleGETSpaceportAgencyRole
(4) /spaceportagencyrole/{id}deleteSpaceportAgencyRoleById(id)SpaceAgencyModuleDELETESpaceportAgencyRole
(5) /spaceportagencyrole/spaceagency/{id}findAllSpaceportAgencyRoleOfSpaceAgency(id)SpaceAgencyModuleGETSpaceAgency SpaceportAgencyRole
(6) /spaceportagencyrole/{id}updateSpaceportAgencyRoleById(spaceportagencyrole)SpaceAgencyModulePUTSpaceportAgencyRole
(7) /spaceportagencyroleinsertSpaceportAgencyRole(spaceportagencyrole)SpaceAgencyModulePOSTSpaceportAgencyRole





Example:

final SpaceportAgencyRole spaceportagencyrole = (SpaceportAgencyRole) invokeModule(SPACE_AGENCY_MODULE + "/spaceportagencyrole/" + id, SpaceportAgencyRole.class);
if (spaceportagencyrole != null) {
    final Spaceport spaceport1 = (Spaceport) invokeModule(SPACEPORT_MODULE + "/spaceport/" + spaceportagencyrole.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) {
            }
        }
    }
    final SpaceAgency spaceagency5 = (SpaceAgency) invokeModule(SPACE_AGENCY_MODULE + "/spaceagency/" + spaceportagencyrole.getSpaceAgency().getId(), SpaceAgency.class);
    if (spaceagency5 != null) {
        final Country country6 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + spaceagency5.getCountry().getId(), Country.class);
        if (country6 != null) {
        }
    }
}
return spaceportagencyrole;


Overview

Summary

ContactDonateImprint