Overview

Summary

ContactDonateImprint


Appendix E-23: SATELLITE GROUND STATION (UI prompt)


SatelliteGroundStationSatelliteModuleStarlink

Properties (2)

PropertyTypeEntityReferenceModule
(1) GroundStationINTSatelliteGroundStationGroundStationGroundStationModule
(2) SatelliteINTSatelliteGroundStationSatelliteSatelliteModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /satellitegroundstation/groundstation/{id}findAllSatelliteGroundStationOfGroundStation(id)SatelliteModuleGETGroundStation SatelliteGroundStation
(2) /satellitegroundstation/{id}findSatelliteGroundStationById(id)SatelliteModuleGETSatelliteGroundStation
(3) /satellitegroundstation/satellite/{id}findAllSatelliteGroundStationOfSatellite(id)SatelliteModuleGETSatellite SatelliteGroundStation
(4) /satellitegroundstationinsertSatelliteGroundStation(satellitegroundstation)SatelliteModulePOSTSatelliteGroundStation
(5) /satellitegroundstation/{id}updateSatelliteGroundStationById(satellitegroundstation)SatelliteModulePUTSatelliteGroundStation
(6) /satellitegroundstation/{id}deleteSatelliteGroundStationById(id)SatelliteModuleDELETESatelliteGroundStation
(7) /satellitegroundstationfindAllSatelliteGroundStation()SatelliteModuleGETSatelliteGroundStation





Example:

final SatelliteGroundStation satellitegroundstation = (SatelliteGroundStation) invokeModule(SATELLITE_MODULE + "/satellitegroundstation/" + id, SatelliteGroundStation.class);
if (satellitegroundstation != null) {
    final Satellite satellite1 = (Satellite) invokeModule(SATELLITE_MODULE + "/satellite/" + satellitegroundstation.getSatellite().getId(), Satellite.class);
    if (satellite1 != null) {
        final OrbitShell orbitshell2 = (OrbitShell) invokeModule(SATELLITE_MODULE + "/orbitshell/" + satellite1.getOrbitShell().getId(), OrbitShell.class);
        if (orbitshell2 != null) {
        }
        final SatelliteBatch satellitebatch3 = (SatelliteBatch) invokeModule(SATELLITE_BATCH_MODULE + "/satellitebatch/" + satellite1.getSatelliteBatch().getId(), SatelliteBatch.class);
        if (satellitebatch3 != null) {
        }
    }
    final GroundStation groundstation4 = (GroundStation) invokeModule(GROUND_STATION_MODULE + "/groundstation/" + satellitegroundstation.getGroundStation().getId(), GroundStation.class);
    if (groundstation4 != null) {
    }
}
return satellitegroundstation;


Overview

Summary

ContactDonateImprint