Overview

Summary

ContactDonateImprint


Appendix E-17: EXCHANGE MEMBERSHIP IN INITIATIVE (UI prompt)


ExchangeMembershipInInitiativeSustainabilityInitiativeModuleNasdaq

Properties (3)

PropertyTypeEntityReferenceModule
(1) ExchangeINTExchangeMembershipInInitiativeExchangeExchangeModule
(2) JoinDateDATEExchangeMembershipInInitiative
(3) SustainabilityInitiativeINTExchangeMembershipInInitiativeSustainabilityInitiativeSustainabilityInitiativeModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /exchangemembershipininitiativeinsertExchangeMembershipInInitiative(exchangemembershipininitiative)SustainabilityInitiativeModulePOSTExchangeMembershipInInitiative
(2) /exchangemembershipininitiative/exchange/{id}findAllExchangeMembershipInInitiativeOfExchange(id)SustainabilityInitiativeModuleGETExchange ExchangeMembershipInInitiative
(3) /exchangemembershipininitiative/{id}deleteExchangeMembershipInInitiativeById(id)SustainabilityInitiativeModuleDELETEExchangeMembershipInInitiative
(4) /exchangemembershipininitiative/{id}updateExchangeMembershipInInitiativeById(exchangemembershipininitiative)SustainabilityInitiativeModulePUTExchangeMembershipInInitiative
(5) /exchangemembershipininitiative/sustainabilityinitiative/{id}findAllExchangeMembershipInInitiativeOfSustainabilityInitiative(id)SustainabilityInitiativeModuleGETSustainabilityInitiative ExchangeMembershipInInitiative
(6) /exchangemembershipininitiativefindAllExchangeMembershipInInitiative()SustainabilityInitiativeModuleGETExchangeMembershipInInitiative
(7) /exchangemembershipininitiative/{id}findExchangeMembershipInInitiativeById(id)SustainabilityInitiativeModuleGETExchangeMembershipInInitiative





Example:

final ExchangeMembershipInInitiative exchangemembershipininitiative = (ExchangeMembershipInInitiative) invokeModule(SUSTAINABILITY_INITIATIVE_MODULE + "/exchangemembershipininitiative/" + id, ExchangeMembershipInInitiative.class);
if (exchangemembershipininitiative != null) {
    final SustainabilityInitiative sustainabilityinitiative1 = (SustainabilityInitiative) invokeModule(SUSTAINABILITY_INITIATIVE_MODULE + "/sustainabilityinitiative/" + exchangemembershipininitiative.getSustainabilityInitiative().getId(), SustainabilityInitiative.class);
    if (sustainabilityinitiative1 != null) {
    }
    final Exchange exchange2 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + exchangemembershipininitiative.getExchange().getId(), Exchange.class);
    if (exchange2 != null) {
        final Company ownercompany3 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange2.getOwnerCompany().getId(), Company.class);
        if (ownercompany3 != null) {
            final Country country4 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany3.getCountry().getId(), Country.class);
            if (country4 != null) {
            }
        }
        final City locationcity5 = (City) invokeModule(CITY_MODULE + "/city/" + exchange2.getLocationCity().getId(), City.class);
        if (locationcity5 != null) {
            final Country country6 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity5.getCountry().getId(), Country.class);
            if (country6 != null) {
            }
        }
        final Country locationcountry7 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange2.getLocationCountry().getId(), Country.class);
        if (locationcountry7 != null) {
        }
    }
}
return exchangemembershipininitiative;


Overview

Summary

ContactDonateImprint