Overview

Summary

ContactDonateImprint


Appendix E-19: PLATFORM (UI prompt)


PlatformCompanyModuleNasdaq

Properties (5)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGPlatform
(2) IsCloudBasedBOOLPlatform
(3) LaunchDateDATEPlatform
(4) NameSTRINGPlatform
(5) ProviderCompanyINTPlatformCompanyCompanyModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /platform/{id}updatePlatformById(platform)CompanyModulePUTPlatform
(2) /platform/{id}findPlatformById(id)CompanyModuleGETPlatform
(3) /platforminsertPlatform(platform)CompanyModulePOSTPlatform
(4) /platformfindAllPlatform()CompanyModuleGETPlatform
(5) /platformadoption/platform/{id}findAllPlatformAdoptionOfPlatform(id)CompanyModuleGETPlatform PlatformAdoption
(6) /platform/{id}deletePlatformById(id)CompanyModuleDELETEPlatform
(7) /platform/providercompany/{id}findAllPlatformOfProviderCompany(id)CompanyModuleGETCompany Platform





Example:

final Platform platform = (Platform) invokeModule(COMPANY_MODULE + "/platform/" + id, Platform.class);
if (platform != null) {
    final Company providercompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + platform.getProviderCompany().getId(), Company.class);
    if (providercompany1 != null) {
        final Country country2 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + providercompany1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
}
return platform;


Overview

Summary

ContactDonateImprint