Overview

Summary

ContactDonateImprint


Appendix E-4: TRADING SESSION (UI prompt)


TradingSessionListingModuleNasdaq

Properties (7)

PropertyTypeEntityReferenceModule
(1) EndTimeLocalSTRINGTradingSession
(2) ExchangeINTTradingSessionExchangeExchangeModule
(3) IsExtendedHoursBOOLTradingSession
(4) NameSTRINGTradingSession
(5) SessionTypeSTRINGTradingSession
(6) StartTimeLocalSTRINGTradingSession
(7) TimeZoneSTRINGTradingSession


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /tradingsessionfindAllTradingSession()ListingModuleGETTradingSession
(2) /tradingsession/{id}findTradingSessionById(id)ListingModuleGETTradingSession
(3) /tradingsession/{id}updateTradingSessionById(tradingsession)ListingModulePUTTradingSession
(4) /tradingsessioninsertTradingSession(tradingsession)ListingModulePOSTTradingSession
(5) /tradingsession/exchange/{id}findAllTradingSessionOfExchange(id)ListingModuleGETExchange TradingSession
(6) /tradingsession/{id}deleteTradingSessionById(id)ListingModuleDELETETradingSession





Example:

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


Overview

Summary

ContactDonateImprint