Overview

Summary

ContactDonateImprint


Appendix E-6: MERGER ATTEMPT (UI prompt)


MergerAttemptSustainabilityInitiativeModuleNasdaq

Properties (7)

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


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /mergerattempt/targetexchange/{id}findAllMergerAttemptOfTargetExchange(id)SustainabilityInitiativeModuleGETExchange MergerAttempt
(2) /mergerattempt/partnercompany/{id}findAllMergerAttemptOfPartnerCompany(id)SustainabilityInitiativeModuleGETCompany MergerAttempt
(3) /mergerattemptinsertMergerAttempt(mergerattempt)SustainabilityInitiativeModulePOSTMergerAttempt
(4) /mergerattempt/bidderexchange/{id}findAllMergerAttemptOfBidderExchange(id)SustainabilityInitiativeModuleGETExchange MergerAttempt
(5) /mergerattempt/{id}deleteMergerAttemptById(id)SustainabilityInitiativeModuleDELETEMergerAttempt
(6) /mergerattempt/{id}findMergerAttemptById(id)SustainabilityInitiativeModuleGETMergerAttempt
(7) /mergerattemptfindAllMergerAttempt()SustainabilityInitiativeModuleGETMergerAttempt
(8) /mergerattempt/{id}updateMergerAttemptById(mergerattempt)SustainabilityInitiativeModulePUTMergerAttempt





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;


Overview

Summary

ContactDonateImprint