Overview

Summary

ContactDonateImprint


2. GROUND STATION MODULE (UI prompt)



Module Entities (7)

EntityAliasModuleGlobal Schema
(1) FrequencyBandFrequencyBandFrequencyBandModuleStarlink
(2) GroundStationGroundStationGroundStationModuleStarlink
(3) GroundStationFrequencyBandGroundStationFrequencyBandGroundStationModuleStarlink
(4) RegulatoryApprovalGroundStationRegulatoryApprovalGroundStationRegulatoryApprovalModuleStarlink
(5) SatelliteGroundStationSatelliteGroundStationSatelliteModuleStarlink
(6) TestSatelliteTestSatelliteGroundStationModuleStarlink
(7) TestSatelliteGroundStationTestSatelliteGroundStationGroundStationModuleStarlink

Module Interfaces (24)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /groundstation/{id}deleteGroundStationById(id)GroundStationModuleDELETEGroundStation
(2) /groundstationfindAllGroundStation()GroundStationModuleGETGroundStation
(3) /groundstationinsertGroundStation(groundstation)GroundStationModulePOSTGroundStation
(4) /groundstationfrequencyband/{id}updateGroundStationFrequencyBandById(groundstationfrequencyband)GroundStationModulePUTGroundStationFrequencyBand
(5) /groundstationfrequencyband/frequencyband/{id}findAllGroundStationFrequencyBandOfFrequencyBand(id)GroundStationModuleGETFrequencyBand GroundStationFrequencyBand
(6) /testsatellitegroundstationfindAllTestSatelliteGroundStation()GroundStationModuleGETTestSatelliteGroundStation
(7) /testsatellitegroundstation/testsatellite/{id}findAllTestSatelliteGroundStationOfTestSatellite(id)GroundStationModuleGETTestSatellite TestSatelliteGroundStation
(8) /groundstation/{id}updateGroundStationById(groundstation)GroundStationModulePUTGroundStation
(9) /groundstationfrequencyband/{id}deleteGroundStationFrequencyBandById(id)GroundStationModuleDELETEGroundStationFrequencyBand
(10) /testsatellitegroundstationinsertTestSatelliteGroundStation(testsatellitegroundstation)GroundStationModulePOSTTestSatelliteGroundStation
(11) /testsatellitegroundstation/{id}findTestSatelliteGroundStationById(id)GroundStationModuleGETTestSatelliteGroundStation
(12) /testsatellite/{id}findTestSatelliteById(id)GroundStationModuleGETTestSatellite
(13) /groundstationfrequencybandfindAllGroundStationFrequencyBand()GroundStationModuleGETGroundStationFrequencyBand
(14) /testsatelliteinsertTestSatellite(testsatellite)GroundStationModulePOSTTestSatellite
(15) /groundstationfrequencyband/groundstation/{id}findAllGroundStationFrequencyBandOfGroundStation(id)GroundStationModuleGETGroundStation GroundStationFrequencyBand
(16) /groundstationfrequencyband/{id}findGroundStationFrequencyBandById(id)GroundStationModuleGETGroundStationFrequencyBand
(17) /testsatellitegroundstation/groundstation/{id}findAllTestSatelliteGroundStationOfGroundStation(id)GroundStationModuleGETGroundStation TestSatelliteGroundStation
(18) /testsatellitegroundstation/{id}deleteTestSatelliteGroundStationById(id)GroundStationModuleDELETETestSatelliteGroundStation
(19) /testsatellitegroundstation/{id}updateTestSatelliteGroundStationById(testsatellitegroundstation)GroundStationModulePUTTestSatelliteGroundStation
(20) /groundstation/{id}findGroundStationById(id)GroundStationModuleGETGroundStation
(21) /testsatellitefindAllTestSatellite()GroundStationModuleGETTestSatellite
(22) /groundstationfrequencybandinsertGroundStationFrequencyBand(groundstationfrequencyband)GroundStationModulePOSTGroundStationFrequencyBand
(23) /testsatellite/{id}deleteTestSatelliteById(id)GroundStationModuleDELETETestSatellite
(24) /testsatellite/{id}updateTestSatelliteById(testsatellite)GroundStationModulePUTTestSatellite






2.1 GROUND STATION


GroundStationGroundStationModuleStarlink

Properties (7)

PropertyTypeEntityReferenceModule
(1) CountrySTRINGGroundStation
(2) FrequencyRangeSTRINGGroundStation
(3) LatitudeDOUBLEGroundStation
(4) LongitudeDOUBLEGroundStation
(5) NameSTRINGGroundStation
(6) OperationalSinceDATEGroundStation
(7) RegionSTRINGGroundStation





Example:

final GroundStation groundstation = (GroundStation) invokeModule(GROUND_STATION_MODULE + "/groundstation/" + id, GroundStation.class);
if (groundstation != null) {
}
return groundstation;


2.2 GROUND STATION FREQUENCY BAND


GroundStationFrequencyBandGroundStationModuleStarlink

Properties (2)

PropertyTypeEntityReferenceModule
(1) FrequencyBandINTGroundStationFrequencyBandFrequencyBandFrequencyBandModule
(2) GroundStationINTGroundStationFrequencyBandGroundStationGroundStationModule





Example:

final GroundStationFrequencyBand groundstationfrequencyband = (GroundStationFrequencyBand) invokeModule(GROUND_STATION_MODULE + "/groundstationfrequencyband/" + id, GroundStationFrequencyBand.class);
if (groundstationfrequencyband != null) {
    final GroundStation groundstation1 = (GroundStation) invokeModule(GROUND_STATION_MODULE + "/groundstation/" + groundstationfrequencyband.getGroundStation().getId(), GroundStation.class);
    if (groundstation1 != null) {
    }
    final FrequencyBand frequencyband2 = (FrequencyBand) invokeModule(FREQUENCY_BAND_MODULE + "/frequencyband/" + groundstationfrequencyband.getFrequencyBand().getId(), FrequencyBand.class);
    if (frequencyband2 != null) {
    }
}
return groundstationfrequencyband;


2.3 TEST SATELLITE


TestSatelliteGroundStationModuleStarlink

Properties (6)

PropertyTypeEntityReferenceModule
(1) DeorbitDateDATETestSatellite
(2) LaunchDateDATETestSatellite
(3) MassKgDOUBLETestSatellite
(4) NameSTRINGTestSatellite
(5) NotesSTRINGTestSatellite
(6) PurposeSTRINGTestSatellite





Example:

final TestSatellite testsatellite = (TestSatellite) invokeModule(GROUND_STATION_MODULE + "/testsatellite/" + id, TestSatellite.class);
if (testsatellite != null) {
}
return testsatellite;


2.4 TEST SATELLITE GROUND STATION


TestSatelliteGroundStationGroundStationModuleStarlink

Properties (2)

PropertyTypeEntityReferenceModule
(1) GroundStationINTTestSatelliteGroundStationGroundStationGroundStationModule
(2) TestSatelliteINTTestSatelliteGroundStationTestSatelliteGroundStationModule





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