Overview

Summary

ContactDonateImprint


Appendix E-16: OPERATOR (UI prompt)


OperatorOperatorModuleSpaceports

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountryLONGOperatorCountryCountryModule
(2) DescriptionSTRINGOperator
(3) NameSTRINGOperator
(4) TypeSTRINGOperator


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /launchvehicle/operator/{id}findAllLaunchVehicleOfOperator(id)LaunchVehicleModuleGETOperator LaunchVehicle
(2) /operator/{id}updateOperatorById(operator)OperatorModulePUTOperator
(3) /operator/country/{id}findAllOperatorOfCountry(id)OperatorModuleGETCountry Operator
(4) /spaceportoperator/operator/{id}findAllSpaceportOperatorOfOperator(id)OperatorModuleGETOperator SpaceportOperator
(5) /operator/{id}findOperatorById(id)OperatorModuleGETOperator
(6) /operator/{id}deleteOperatorById(id)OperatorModuleDELETEOperator
(7) /operatorfindAllOperator()OperatorModuleGETOperator
(8) /operatorinsertOperator(operator)OperatorModulePOSTOperator





Example:

final Operator operator = (Operator) invokeModule(OPERATOR_MODULE + "/operator/" + id, Operator.class);
if (operator != null) {
    final Country country1 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + operator.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return operator;


Overview

Summary

ContactDonateImprint