Overview

Summary

ContactDonateImprint


Appendix E-24: TRADING SCHEDULE CHANGE (UI prompt)


TradingScheduleChangeQuoteLevelModuleNasdaq

Properties (4)

PropertyTypeEntityReferenceModule
(1) AnnouncementDateDATETradingScheduleChange
(2) DescriptionSTRINGTradingScheduleChange
(3) EffectiveDateDATETradingScheduleChange
(4) ExchangeINTTradingScheduleChangeExchangeExchangeModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /tradingschedulechange/{id}updateTradingScheduleChangeById(tradingschedulechange)QuoteLevelModulePUTTradingScheduleChange
(2) /tradingschedulechangeinsertTradingScheduleChange(tradingschedulechange)QuoteLevelModulePOSTTradingScheduleChange
(3) /tradingschedulechange/exchange/{id}findAllTradingScheduleChangeOfExchange(id)QuoteLevelModuleGETExchange TradingScheduleChange
(4) /tradingschedulechange/{id}findTradingScheduleChangeById(id)QuoteLevelModuleGETTradingScheduleChange
(5) /tradingschedulechangefindAllTradingScheduleChange()QuoteLevelModuleGETTradingScheduleChange
(6) /tradingschedulechange/{id}deleteTradingScheduleChangeById(id)QuoteLevelModuleDELETETradingScheduleChange





Example:

final TradingScheduleChange tradingschedulechange = (TradingScheduleChange) invokeModule(QUOTE_LEVEL_MODULE + "/tradingschedulechange/" + id, TradingScheduleChange.class);
if (tradingschedulechange != null) {
    final Exchange exchange1 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + tradingschedulechange.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 tradingschedulechange;


Overview

Summary

ContactDonateImprint