Overview

Summary

ContactDonateImprint


Appendix E-7: TEST SATELLITE GROUND STATION (UI prompt)


TestSatelliteGroundStationGroundStationModuleStarlink

Properties (2)

PropertyTypeEntityReferenceModule
(1) GroundStationINTTestSatelliteGroundStationGroundStationGroundStationModule
(2) TestSatelliteINTTestSatelliteGroundStationTestSatelliteGroundStationModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /testsatellitegroundstation/groundstation/{id}findAllTestSatelliteGroundStationOfGroundStation(id)GroundStationModuleGETGroundStation TestSatelliteGroundStation
(2) /testsatellitegroundstationfindAllTestSatelliteGroundStation()GroundStationModuleGETTestSatelliteGroundStation
(3) /testsatellitegroundstation/{id}deleteTestSatelliteGroundStationById(id)GroundStationModuleDELETETestSatelliteGroundStation
(4) /testsatellitegroundstation/testsatellite/{id}findAllTestSatelliteGroundStationOfTestSatellite(id)GroundStationModuleGETTestSatellite TestSatelliteGroundStation
(5) /testsatellitegroundstation/{id}updateTestSatelliteGroundStationById(testsatellitegroundstation)GroundStationModulePUTTestSatelliteGroundStation
(6) /testsatellitegroundstationinsertTestSatelliteGroundStation(testsatellitegroundstation)GroundStationModulePOSTTestSatelliteGroundStation
(7) /testsatellitegroundstation/{id}findTestSatelliteGroundStationById(id)GroundStationModuleGETTestSatelliteGroundStation





Example:

final TestSatelliteGroundStation testsatellitegroundstation = (TestSatelliteGroundStation) invokeModule(GROUND_STATION_MODULE + "/testsatellitegroundstation/" + id, TestSatelliteGroundStation.class);
if (testsatellitegroundstation != null) {
    final TestSatellite testsatellite1 = (TestSatellite) invokeModule(GROUND_STATION_MODULE + "/testsatellite/" + testsatellitegroundstation.getTestSatellite().getId(), TestSatellite.class);
    if (testsatellite1 != null) {
    }
    final GroundStation groundstation2 = (GroundStation) invokeModule(GROUND_STATION_MODULE + "/groundstation/" + testsatellitegroundstation.getGroundStation().getId(), GroundStation.class);
    if (groundstation2 != null) {
    }
}
return testsatellitegroundstation;


Overview

Summary

ContactDonateImprint