Overview

Summary

ContactDonateImprint


8. SUSTAINABILITY INITIATIVE MODULE (UI prompt)



Module Entities (6)

EntityAliasModuleGlobal Schema
(1) CompanyCompanyCompanyModuleNasdaq
(2) EventEventSustainabilityInitiativeModuleNasdaq
(3) ExchangeExchangeExchangeModuleNasdaq
(4) ExchangeMembershipInInitiativeExchangeMembershipInInitiativeSustainabilityInitiativeModuleNasdaq
(5) MergerAttemptMergerAttemptSustainabilityInitiativeModuleNasdaq
(6) SustainabilityInitiativeSustainabilityInitiativeSustainabilityInitiativeModuleNasdaq

Module Interfaces (26)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /exchangemembershipininitiative/exchange/{id}findAllExchangeMembershipInInitiativeOfExchange(id)SustainabilityInitiativeModuleGETExchange ExchangeMembershipInInitiative
(2) /mergerattempt/{id}deleteMergerAttemptById(id)SustainabilityInitiativeModuleDELETEMergerAttempt
(3) /exchangemembershipininitiative/sustainabilityinitiative/{id}findAllExchangeMembershipInInitiativeOfSustainabilityInitiative(id)SustainabilityInitiativeModuleGETSustainabilityInitiative ExchangeMembershipInInitiative
(4) /event/{id}findEventById(id)SustainabilityInitiativeModuleGETEvent
(5) /sustainabilityinitiativefindAllSustainabilityInitiative()SustainabilityInitiativeModuleGETSustainabilityInitiative
(6) /eventfindAllEvent()SustainabilityInitiativeModuleGETEvent
(7) /exchangemembershipininitiativeinsertExchangeMembershipInInitiative(exchangemembershipininitiative)SustainabilityInitiativeModulePOSTExchangeMembershipInInitiative
(8) /mergerattempt/bidderexchange/{id}findAllMergerAttemptOfBidderExchange(id)SustainabilityInitiativeModuleGETExchange MergerAttempt
(9) /sustainabilityinitiative/{id}findSustainabilityInitiativeById(id)SustainabilityInitiativeModuleGETSustainabilityInitiative
(10) /event/{id}deleteEventById(id)SustainabilityInitiativeModuleDELETEEvent
(11) /sustainabilityinitiativeinsertSustainabilityInitiative(sustainabilityinitiative)SustainabilityInitiativeModulePOSTSustainabilityInitiative
(12) /exchangemembershipininitiativefindAllExchangeMembershipInInitiative()SustainabilityInitiativeModuleGETExchangeMembershipInInitiative
(13) /sustainabilityinitiative/{id}updateSustainabilityInitiativeById(sustainabilityinitiative)SustainabilityInitiativeModulePUTSustainabilityInitiative
(14) /mergerattemptinsertMergerAttempt(mergerattempt)SustainabilityInitiativeModulePOSTMergerAttempt
(15) /event/exchange/{id}findAllEventOfExchange(id)SustainabilityInitiativeModuleGETExchange Event
(16) /mergerattempt/{id}updateMergerAttemptById(mergerattempt)SustainabilityInitiativeModulePUTMergerAttempt
(17) /event/{id}updateEventById(event)SustainabilityInitiativeModulePUTEvent
(18) /mergerattempt/targetexchange/{id}findAllMergerAttemptOfTargetExchange(id)SustainabilityInitiativeModuleGETExchange MergerAttempt
(19) /sustainabilityinitiative/{id}deleteSustainabilityInitiativeById(id)SustainabilityInitiativeModuleDELETESustainabilityInitiative
(20) /mergerattempt/{id}findMergerAttemptById(id)SustainabilityInitiativeModuleGETMergerAttempt
(21) /exchangemembershipininitiative/{id}deleteExchangeMembershipInInitiativeById(id)SustainabilityInitiativeModuleDELETEExchangeMembershipInInitiative
(22) /eventinsertEvent(event)SustainabilityInitiativeModulePOSTEvent
(23) /exchangemembershipininitiative/{id}updateExchangeMembershipInInitiativeById(exchangemembershipininitiative)SustainabilityInitiativeModulePUTExchangeMembershipInInitiative
(24) /mergerattemptfindAllMergerAttempt()SustainabilityInitiativeModuleGETMergerAttempt
(25) /mergerattempt/partnercompany/{id}findAllMergerAttemptOfPartnerCompany(id)SustainabilityInitiativeModuleGETCompany MergerAttempt
(26) /exchangemembershipininitiative/{id}findExchangeMembershipInInitiativeById(id)SustainabilityInitiativeModuleGETExchangeMembershipInInitiative






8.1 EVENT


EventSustainabilityInitiativeModuleNasdaq

Properties (5)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGEvent
(2) EventDateDATEEvent
(3) EventTypeSTRINGEvent
(4) ExchangeINTEventExchangeExchangeModule
(5) SourceSTRINGEvent





Example:

final Event event = (Event) invokeModule(SUSTAINABILITY_INITIATIVE_MODULE + "/event/" + id, Event.class);
if (event != null) {
    final Exchange exchange1 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + event.getExchange().getId(), Exchange.class);
    if (exchange1 != null) {
        final Company ownercompany2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange1.getOwnerCompany().getId(), Company.class);
        if (ownercompany2 != null) {
            final Country country3 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final City locationcity4 = (City) invokeModule(CITY_MODULE + "/city/" + exchange1.getLocationCity().getId(), City.class);
        if (locationcity4 != null) {
            final Country country5 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity4.getCountry().getId(), Country.class);
            if (country5 != null) {
            }
        }
        final Country locationcountry6 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange1.getLocationCountry().getId(), Country.class);
        if (locationcountry6 != null) {
        }
    }
}
return event;


8.2 EXCHANGE MEMBERSHIP IN INITIATIVE


ExchangeMembershipInInitiativeSustainabilityInitiativeModuleNasdaq

Properties (3)

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





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;


8.3 MERGER ATTEMPT


MergerAttemptSustainabilityInitiativeModuleNasdaq

Properties (7)

PropertyTypeEntityReferenceModule
(1) AnnouncementDateDATEMergerAttempt
(2) BidderExchangeINTMergerAttemptExchangeExchangeModule
(3) PartnerCompanyINTMergerAttemptCompanyCompanyModule
(4) ReasonWithdrawnSTRINGMergerAttempt
(5) StatusSTRINGMergerAttempt
(6) TargetExchangeINTMergerAttemptExchangeExchangeModule
(7) WithdrawnDateDATEMergerAttempt





Example:

final MergerAttempt mergerattempt = (MergerAttempt) invokeModule(SUSTAINABILITY_INITIATIVE_MODULE + "/mergerattempt/" + id, MergerAttempt.class);
if (mergerattempt != null) {
    final Exchange bidderexchange1 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + mergerattempt.getBidderExchange().getId(), Exchange.class);
    if (bidderexchange1 != null) {
        final Company ownercompany2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + bidderexchange1.getOwnerCompany().getId(), Company.class);
        if (ownercompany2 != null) {
            final Country country3 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final City locationcity4 = (City) invokeModule(CITY_MODULE + "/city/" + bidderexchange1.getLocationCity().getId(), City.class);
        if (locationcity4 != null) {
            final Country country5 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity4.getCountry().getId(), Country.class);
            if (country5 != null) {
            }
        }
        final Country locationcountry6 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + bidderexchange1.getLocationCountry().getId(), Country.class);
        if (locationcountry6 != null) {
        }
    }
    final Company partnercompany7 = (Company) invokeModule(COMPANY_MODULE + "/company/" + mergerattempt.getPartnerCompany().getId(), Company.class);
    if (partnercompany7 != null) {
        final Country country8 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + partnercompany7.getCountry().getId(), Country.class);
        if (country8 != null) {
        }
    }
    final Exchange targetexchange9 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + mergerattempt.getTargetExchange().getId(), Exchange.class);
    if (targetexchange9 != null) {
        final Company ownercompany10 = (Company) invokeModule(COMPANY_MODULE + "/company/" + targetexchange9.getOwnerCompany().getId(), Company.class);
        if (ownercompany10 != null) {
            final Country country11 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany10.getCountry().getId(), Country.class);
            if (country11 != null) {
            }
        }
        final City locationcity12 = (City) invokeModule(CITY_MODULE + "/city/" + targetexchange9.getLocationCity().getId(), City.class);
        if (locationcity12 != null) {
            final Country country13 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity12.getCountry().getId(), Country.class);
            if (country13 != null) {
            }
        }
        final Country locationcountry14 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + targetexchange9.getLocationCountry().getId(), Country.class);
        if (locationcountry14 != null) {
        }
    }
}
return mergerattempt;


8.4 SUSTAINABILITY INITIATIVE


SustainabilityInitiativeSustainabilityInitiativeModuleNasdaq

Properties (4)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGSustainabilityInitiative
(2) LaunchDateDATESustainabilityInitiative
(3) NameSTRINGSustainabilityInitiative
(4) SponsorOrganizationSTRINGSustainabilityInitiative





Example:

final SustainabilityInitiative sustainabilityinitiative = (SustainabilityInitiative) invokeModule(SUSTAINABILITY_INITIATIVE_MODULE + "/sustainabilityinitiative/" + id, SustainabilityInitiative.class);
if (sustainabilityinitiative != null) {
}
return sustainabilityinitiative;


Overview

Summary

ContactDonateImprint