Overview

Summary

ContactDonateImprint


Appendix E-8: DEPLOYMENT PARTNER (UI prompt)


DeploymentPartnerModuleLoons

Properties (3)

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


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /deploymentpartner/{id}findDeploymentPartnerById(id)ModuleGETDeploymentPartner
(2) /deploymentpartner/{id}updateDeploymentPartnerById(deploymentpartner)ModulePUTDeploymentPartner
(3) /deploymentpartnerinsertDeploymentPartner(deploymentpartner)ModulePOSTDeploymentPartner
(4) /deploymentpartner/{id}deleteDeploymentPartnerById(id)ModuleDELETEDeploymentPartner
(5) /deploymentpartnerfindAllDeploymentPartner()ModuleGETDeploymentPartner
(6) /deploymentpartner/servicedeployment/{id}findAllDeploymentPartnerOfServiceDeployment(id)ModuleGETServiceDeployment DeploymentPartner
(7) /deploymentpartner/partnerorganization/{id}findAllDeploymentPartnerOfPartnerOrganization(id)ModuleGETPartnerOrganization DeploymentPartner





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;


Overview

Summary

ContactDonateImprint