Overview

Summary

ContactDonateImprint


Appendix E-3: QUOTE LEVEL (UI prompt)


QuoteLevelQuoteLevelModuleNasdaq

Properties (4)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGQuoteLevel
(2) ExchangeINTQuoteLevelExchangeExchangeModule
(3) IsForMarketMakersBOOLQuoteLevel
(4) LevelNumberINTQuoteLevel


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /quotelevel/exchange/{id}findAllQuoteLevelOfExchange(id)QuoteLevelModuleGETExchange QuoteLevel
(2) /quotelevelfindAllQuoteLevel()QuoteLevelModuleGETQuoteLevel
(3) /quotelevel/{id}findQuoteLevelById(id)QuoteLevelModuleGETQuoteLevel
(4) /marketmakerquotepermission/quotelevel/{id}findAllMarketMakerQuotePermissionOfQuoteLevel(id)QuoteLevelModuleGETQuoteLevel MarketMakerQuotePermission
(5) /quotelevelinsertQuoteLevel(quotelevel)QuoteLevelModulePOSTQuoteLevel
(6) /quotelevel/{id}deleteQuoteLevelById(id)QuoteLevelModuleDELETEQuoteLevel
(7) /quotelevel/{id}updateQuoteLevelById(quotelevel)QuoteLevelModulePUTQuoteLevel





Example:

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


Overview

Summary

ContactDonateImprint