Overview

Summary

ContactDonateImprint


Appendix E-25: EVENT (UI prompt)


EventSustainabilityInitiativeModuleNasdaq

Properties (5)

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


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /event/{id}updateEventById(event)SustainabilityInitiativeModulePUTEvent
(2) /event/{id}findEventById(id)SustainabilityInitiativeModuleGETEvent
(3) /event/{id}deleteEventById(id)SustainabilityInitiativeModuleDELETEEvent
(4) /eventinsertEvent(event)SustainabilityInitiativeModulePOSTEvent
(5) /eventfindAllEvent()SustainabilityInitiativeModuleGETEvent
(6) /event/exchange/{id}findAllEventOfExchange(id)SustainabilityInitiativeModuleGETExchange Event





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;


Overview

Summary

ContactDonateImprint