Overview

Summary

ContactDonateImprint


7. MODULE (UI prompt)



Module Entities (7)

EntityAliasModuleGlobal Schema
(1) CountryCountryCountryModuleLoons
(2) DeploymentDisasterEventDeploymentDisasterEventWindLayerModuleLoons
(3) DeploymentPartnerDeploymentPartnerModuleLoons
(4) PartnerOrganizationPartnerOrganizationModuleLoons
(5) ProjectProjectProjectModuleLoons
(6) ServiceAreaServiceAreaRegionModuleLoons
(7) ServiceDeploymentServiceDeploymentModuleLoons

Module Interfaces (20)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /deploymentpartner/servicedeployment/{id}findAllDeploymentPartnerOfServiceDeployment(id)ModuleGETServiceDeployment DeploymentPartner
(2) /partnerorganization/{id}deletePartnerOrganizationById(id)ModuleDELETEPartnerOrganization
(3) /deploymentpartnerinsertDeploymentPartner(deploymentpartner)ModulePOSTDeploymentPartner
(4) /partnerorganizationfindAllPartnerOrganization()ModuleGETPartnerOrganization
(5) /servicedeployment/{id}findServiceDeploymentById(id)ModuleGETServiceDeployment
(6) /partnerorganization/{id}updatePartnerOrganizationById(partnerorganization)ModulePUTPartnerOrganization
(7) /partnerorganizationinsertPartnerOrganization(partnerorganization)ModulePOSTPartnerOrganization
(8) /servicedeployment/project/{id}findAllServiceDeploymentOfProject(id)ModuleGETProject ServiceDeployment
(9) /deploymentpartner/{id}findDeploymentPartnerById(id)ModuleGETDeploymentPartner
(10) /servicedeployment/{id}deleteServiceDeploymentById(id)ModuleDELETEServiceDeployment
(11) /servicedeployment/servicearea/{id}findAllServiceDeploymentOfServiceArea(id)ModuleGETServiceArea ServiceDeployment
(12) /servicedeploymentinsertServiceDeployment(servicedeployment)ModulePOSTServiceDeployment
(13) /partnerorganization/country/{id}findAllPartnerOrganizationOfCountry(id)ModuleGETCountry PartnerOrganization
(14) /servicedeploymentfindAllServiceDeployment()ModuleGETServiceDeployment
(15) /servicedeployment/{id}updateServiceDeploymentById(servicedeployment)ModulePUTServiceDeployment
(16) /deploymentpartner/partnerorganization/{id}findAllDeploymentPartnerOfPartnerOrganization(id)ModuleGETPartnerOrganization DeploymentPartner
(17) /deploymentpartner/{id}deleteDeploymentPartnerById(id)ModuleDELETEDeploymentPartner
(18) /deploymentpartner/{id}updateDeploymentPartnerById(deploymentpartner)ModulePUTDeploymentPartner
(19) /deploymentpartnerfindAllDeploymentPartner()ModuleGETDeploymentPartner
(20) /partnerorganization/{id}findPartnerOrganizationById(id)ModuleGETPartnerOrganization






7.1 DEPLOYMENT PARTNER


DeploymentPartnerModuleLoons

Properties (3)

PropertyTypeEntityReferenceModule
(1) PartnerOrganizationINTDeploymentPartnerPartnerOrganizationModule
(2) RoleDescriptionSTRINGDeploymentPartner
(3) ServiceDeploymentINTDeploymentPartnerServiceDeploymentModule





Example:

final DeploymentPartner deploymentpartner = (DeploymentPartner) invokeModule(MODULE + "/deploymentpartner/" + id, DeploymentPartner.class);
if (deploymentpartner != null) {
    final PartnerOrganization partnerorganization1 = (PartnerOrganization) invokeModule(MODULE + "/partnerorganization/" + deploymentpartner.getPartnerOrganization().getId(), PartnerOrganization.class);
    if (partnerorganization1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + partnerorganization1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final ServiceDeployment servicedeployment3 = (ServiceDeployment) invokeModule(MODULE + "/servicedeployment/" + deploymentpartner.getServiceDeployment().getId(), ServiceDeployment.class);
    if (servicedeployment3 != null) {
        final ServiceArea servicearea4 = (ServiceArea) invokeModule(REGION_MODULE + "/servicearea/" + servicedeployment3.getServiceArea().getId(), ServiceArea.class);
        if (servicearea4 != null) {
            final Region region5 = (Region) invokeModule(REGION_MODULE + "/region/" + servicearea4.getRegion().getId(), Region.class);
            if (region5 != null) {
                final Country country6 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + region5.getCountry().getId(), Country.class);
                if (country6 != null) {
                }
            }
            final Country country7 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + servicearea4.getCountry().getId(), Country.class);
            if (country7 != null) {
            }
        }
        final Project project8 = (Project) invokeModule(PROJECT_MODULE + "/project/" + servicedeployment3.getProject().getId(), Project.class);
        if (project8 != null) {
            final Company company9 = (Company) invokeModule(COMPANY_MODULE + "/company/" + project8.getCompany().getId(), Company.class);
            if (company9 != null) {
            }
        }
    }
}
return deploymentpartner;


7.2 PARTNER ORGANIZATION


PartnerOrganizationModuleLoons

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountryINTPartnerOrganizationCountryCountryModule
(2) NameSTRINGPartnerOrganization
(3) OrganizationTypeSTRINGPartnerOrganization
(4) WebsiteSTRINGPartnerOrganization





Example:

final PartnerOrganization partnerorganization = (PartnerOrganization) invokeModule(MODULE + "/partnerorganization/" + id, PartnerOrganization.class);
if (partnerorganization != null) {
    final Country country1 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + partnerorganization.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return partnerorganization;


7.3 SERVICE DEPLOYMENT


ServiceDeploymentModuleLoons

Properties (8)

PropertyTypeEntityReferenceModule
(1) AverageThroughputMbitPerSecSTRINGServiceDeployment
(2) DescriptionSTRINGServiceDeployment
(3) EndDateDATEServiceDeployment
(4) IsEmergencyDeploymentBOOLServiceDeployment
(5) PeakUsersINTServiceDeployment
(6) ProjectINTServiceDeploymentProjectProjectModule
(7) ServiceAreaINTServiceDeploymentServiceAreaRegionModule
(8) StartDateDATEServiceDeployment





Example:

final ServiceDeployment servicedeployment = (ServiceDeployment) invokeModule(MODULE + "/servicedeployment/" + id, ServiceDeployment.class);
if (servicedeployment != null) {
    final ServiceArea servicearea1 = (ServiceArea) invokeModule(REGION_MODULE + "/servicearea/" + servicedeployment.getServiceArea().getId(), ServiceArea.class);
    if (servicearea1 != null) {
        final Region region2 = (Region) invokeModule(REGION_MODULE + "/region/" + servicearea1.getRegion().getId(), Region.class);
        if (region2 != null) {
            final Country country3 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + region2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final Country country4 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + servicearea1.getCountry().getId(), Country.class);
        if (country4 != null) {
        }
    }
    final Project project5 = (Project) invokeModule(PROJECT_MODULE + "/project/" + servicedeployment.getProject().getId(), Project.class);
    if (project5 != null) {
        final Company company6 = (Company) invokeModule(COMPANY_MODULE + "/company/" + project5.getCompany().getId(), Company.class);
        if (company6 != null) {
        }
    }
}
return servicedeployment;


Overview

Summary

ContactDonateImprint