Overview

Summary

ContactDonateImprint


Appendix E-11: REGULATORY APPROVAL SATELLITE BATCH (UI prompt)


RegulatoryApprovalSatelliteBatchSatelliteBatchModuleStarlink

Properties (2)

PropertyTypeEntityReferenceModule
(1) RegulatoryApprovalINTRegulatoryApprovalSatelliteBatchRegulatoryApprovalRegulatoryApprovalModule
(2) SatelliteBatchINTRegulatoryApprovalSatelliteBatchSatelliteBatchSatelliteBatchModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /regulatoryapprovalsatellitebatch/{id}findRegulatoryApprovalSatelliteBatchById(id)SatelliteBatchModuleGETRegulatoryApprovalSatelliteBatch
(2) /regulatoryapprovalsatellitebatch/{id}updateRegulatoryApprovalSatelliteBatchById(regulatoryapprovalsatellitebatch)SatelliteBatchModulePUTRegulatoryApprovalSatelliteBatch
(3) /regulatoryapprovalsatellitebatch/{id}deleteRegulatoryApprovalSatelliteBatchById(id)SatelliteBatchModuleDELETERegulatoryApprovalSatelliteBatch
(4) /regulatoryapprovalsatellitebatchinsertRegulatoryApprovalSatelliteBatch(regulatoryapprovalsatellitebatch)SatelliteBatchModulePOSTRegulatoryApprovalSatelliteBatch
(5) /regulatoryapprovalsatellitebatch/regulatoryapproval/{id}findAllRegulatoryApprovalSatelliteBatchOfRegulatoryApproval(id)SatelliteBatchModuleGETRegulatoryApproval RegulatoryApprovalSatelliteBatch
(6) /regulatoryapprovalsatellitebatch/satellitebatch/{id}findAllRegulatoryApprovalSatelliteBatchOfSatelliteBatch(id)SatelliteBatchModuleGETSatelliteBatch RegulatoryApprovalSatelliteBatch
(7) /regulatoryapprovalsatellitebatchfindAllRegulatoryApprovalSatelliteBatch()SatelliteBatchModuleGETRegulatoryApprovalSatelliteBatch





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;


Overview

Summary

ContactDonateImprint