Overview

Summary

ContactDonateImprint


4. SATELLITE BATCH MODULE (UI prompt)



Module Entities (7)

EntityAliasModuleGlobal Schema
(1) CountryAvailabilityCountryAvailabilitySatelliteBatchModuleStarlink
(2) IncidentIncidentSatelliteBatchModuleStarlink
(3) RegulatoryApprovalRegulatoryApprovalRegulatoryApprovalModuleStarlink
(4) RegulatoryApprovalSatelliteBatchRegulatoryApprovalSatelliteBatchSatelliteBatchModuleStarlink
(5) SatelliteSatelliteSatelliteModuleStarlink
(6) SatelliteBatchSatelliteBatchSatelliteBatchModuleStarlink
(7) SatelliteIncidentSatelliteIncidentSatelliteModuleStarlink

Module Interfaces (22)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /incident/{id}updateIncidentById(incident)SatelliteBatchModulePUTIncident
(2) /regulatoryapprovalsatellitebatch/{id}findRegulatoryApprovalSatelliteBatchById(id)SatelliteBatchModuleGETRegulatoryApprovalSatelliteBatch
(3) /satellitebatchfindAllSatelliteBatch()SatelliteBatchModuleGETSatelliteBatch
(4) /satellitebatch/{id}updateSatelliteBatchById(satellitebatch)SatelliteBatchModulePUTSatelliteBatch
(5) /regulatoryapprovalsatellitebatch/regulatoryapproval/{id}findAllRegulatoryApprovalSatelliteBatchOfRegulatoryApproval(id)SatelliteBatchModuleGETRegulatoryApproval RegulatoryApprovalSatelliteBatch
(6) /regulatoryapprovalsatellitebatchinsertRegulatoryApprovalSatelliteBatch(regulatoryapprovalsatellitebatch)SatelliteBatchModulePOSTRegulatoryApprovalSatelliteBatch
(7) /regulatoryapprovalsatellitebatch/satellitebatch/{id}findAllRegulatoryApprovalSatelliteBatchOfSatelliteBatch(id)SatelliteBatchModuleGETSatelliteBatch RegulatoryApprovalSatelliteBatch
(8) /satellitebatchinsertSatelliteBatch(satellitebatch)SatelliteBatchModulePOSTSatelliteBatch
(9) /incident/{id}deleteIncidentById(id)SatelliteBatchModuleDELETEIncident
(10) /regulatoryapprovalsatellitebatch/{id}updateRegulatoryApprovalSatelliteBatchById(regulatoryapprovalsatellitebatch)SatelliteBatchModulePUTRegulatoryApprovalSatelliteBatch
(11) /countryavailability/{id}findCountryAvailabilityById(id)SatelliteBatchModuleGETCountryAvailability
(12) /satellitebatch/{id}findSatelliteBatchById(id)SatelliteBatchModuleGETSatelliteBatch
(13) /countryavailability/{id}updateCountryAvailabilityById(countryavailability)SatelliteBatchModulePUTCountryAvailability
(14) /countryavailabilityinsertCountryAvailability(countryavailability)SatelliteBatchModulePOSTCountryAvailability
(15) /incidentinsertIncident(incident)SatelliteBatchModulePOSTIncident
(16) /countryavailability/{id}deleteCountryAvailabilityById(id)SatelliteBatchModuleDELETECountryAvailability
(17) /incidentfindAllIncident()SatelliteBatchModuleGETIncident
(18) /regulatoryapprovalsatellitebatchfindAllRegulatoryApprovalSatelliteBatch()SatelliteBatchModuleGETRegulatoryApprovalSatelliteBatch
(19) /satellitebatch/{id}deleteSatelliteBatchById(id)SatelliteBatchModuleDELETESatelliteBatch
(20) /countryavailabilityfindAllCountryAvailability()SatelliteBatchModuleGETCountryAvailability
(21) /regulatoryapprovalsatellitebatch/{id}deleteRegulatoryApprovalSatelliteBatchById(id)SatelliteBatchModuleDELETERegulatoryApprovalSatelliteBatch
(22) /incident/{id}findIncidentById(id)SatelliteBatchModuleGETIncident






4.1 COUNTRY AVAILABILITY


CountryAvailabilitySatelliteBatchModuleStarlink

Properties (3)

PropertyTypeEntityReferenceModule
(1) CountrySTRINGCountryAvailability
(2) NotesSTRINGCountryAvailability
(3) StartDateDATECountryAvailability





Example:

final CountryAvailability countryavailability = (CountryAvailability) invokeModule(SATELLITE_BATCH_MODULE + "/countryavailability/" + id, CountryAvailability.class);
if (countryavailability != null) {
}
return countryavailability;


4.2 INCIDENT


IncidentSatelliteBatchModuleStarlink

Properties (4)

PropertyTypeEntityReferenceModule
(1) DateDATEIncident
(2) DescriptionSTRINGIncident
(3) IncidentTypeSTRINGIncident
(4) InvolvedPartySTRINGIncident





Example:

final Incident incident = (Incident) invokeModule(SATELLITE_BATCH_MODULE + "/incident/" + id, Incident.class);
if (incident != null) {
}
return incident;


4.3 REGULATORY APPROVAL SATELLITE BATCH


RegulatoryApprovalSatelliteBatchSatelliteBatchModuleStarlink

Properties (2)

PropertyTypeEntityReferenceModule
(1) RegulatoryApprovalINTRegulatoryApprovalSatelliteBatchRegulatoryApprovalRegulatoryApprovalModule
(2) SatelliteBatchINTRegulatoryApprovalSatelliteBatchSatelliteBatchSatelliteBatchModule





Example:

final RegulatoryApprovalSatelliteBatch regulatoryapprovalsatellitebatch = (RegulatoryApprovalSatelliteBatch) invokeModule(SATELLITE_BATCH_MODULE + "/regulatoryapprovalsatellitebatch/" + id, RegulatoryApprovalSatelliteBatch.class);
if (regulatoryapprovalsatellitebatch != null) {
    final SatelliteBatch satellitebatch1 = (SatelliteBatch) invokeModule(SATELLITE_BATCH_MODULE + "/satellitebatch/" + regulatoryapprovalsatellitebatch.getSatelliteBatch().getId(), SatelliteBatch.class);
    if (satellitebatch1 != null) {
    }
    final RegulatoryApproval regulatoryapproval2 = (RegulatoryApproval) invokeModule(REGULATORY_APPROVAL_MODULE + "/regulatoryapproval/" + regulatoryapprovalsatellitebatch.getRegulatoryApproval().getId(), RegulatoryApproval.class);
    if (regulatoryapproval2 != null) {
    }
}
return regulatoryapprovalsatellitebatch;


4.4 SATELLITE BATCH


SatelliteBatchSatelliteBatchModuleStarlink

Properties (6)

PropertyTypeEntityReferenceModule
(1) BatchNameSTRINGSatelliteBatch
(2) LaunchDateDATESatelliteBatch
(3) LaunchSiteSTRINGSatelliteBatch
(4) LaunchVehicleSTRINGSatelliteBatch
(5) NotesSTRINGSatelliteBatch
(6) NumberOfSatellitesINTSatelliteBatch





Example:

final SatelliteBatch satellitebatch = (SatelliteBatch) invokeModule(SATELLITE_BATCH_MODULE + "/satellitebatch/" + id, SatelliteBatch.class);
if (satellitebatch != null) {
}
return satellitebatch;


Overview

Summary

ContactDonateImprint