Overview

Summary

ContactDonateImprint


Appendix E-15: MARKET MAKER QUOTE PERMISSION (UI prompt)


MarketMakerQuotePermissionQuoteLevelModuleNasdaq

Properties (5)

PropertyTypeEntityReferenceModule
(1) EffectiveFromDATEMarketMakerQuotePermission
(2) EffectiveToDATEMarketMakerQuotePermission
(3) ExchangeINTMarketMakerQuotePermissionExchangeExchangeModule
(4) MarketMakerINTMarketMakerQuotePermissionMarketMakerRegulatorModule
(5) QuoteLevelINTMarketMakerQuotePermissionQuoteLevelQuoteLevelModule


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /marketmakerquotepermissionfindAllMarketMakerQuotePermission()QuoteLevelModuleGETMarketMakerQuotePermission
(2) /marketmakerquotepermission/{id}updateMarketMakerQuotePermissionById(marketmakerquotepermission)QuoteLevelModulePUTMarketMakerQuotePermission
(3) /marketmakerquotepermissioninsertMarketMakerQuotePermission(marketmakerquotepermission)QuoteLevelModulePOSTMarketMakerQuotePermission
(4) /marketmakerquotepermission/{id}findMarketMakerQuotePermissionById(id)QuoteLevelModuleGETMarketMakerQuotePermission
(5) /marketmakerquotepermission/exchange/{id}findAllMarketMakerQuotePermissionOfExchange(id)QuoteLevelModuleGETExchange MarketMakerQuotePermission
(6) /marketmakerquotepermission/marketmaker/{id}findAllMarketMakerQuotePermissionOfMarketMaker(id)QuoteLevelModuleGETMarketMaker MarketMakerQuotePermission
(7) /marketmakerquotepermission/quotelevel/{id}findAllMarketMakerQuotePermissionOfQuoteLevel(id)QuoteLevelModuleGETQuoteLevel MarketMakerQuotePermission
(8) /marketmakerquotepermission/{id}deleteMarketMakerQuotePermissionById(id)QuoteLevelModuleDELETEMarketMakerQuotePermission





Example:

final MarketMakerQuotePermission marketmakerquotepermission = (MarketMakerQuotePermission) invokeModule(QUOTE_LEVEL_MODULE + "/marketmakerquotepermission/" + id, MarketMakerQuotePermission.class);
if (marketmakerquotepermission != null) {
    final MarketMaker marketmaker1 = (MarketMaker) invokeModule(REGULATOR_MODULE + "/marketmaker/" + marketmakerquotepermission.getMarketMaker().getId(), MarketMaker.class);
    if (marketmaker1 != null) {
        final Regulator regulator2 = (Regulator) invokeModule(REGULATOR_MODULE + "/regulator/" + marketmaker1.getRegulator().getId(), Regulator.class);
        if (regulator2 != null) {
            final Country country3 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + regulator2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final Country country4 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + marketmaker1.getCountry().getId(), Country.class);
        if (country4 != null) {
        }
    }
    final Exchange exchange5 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + marketmakerquotepermission.getExchange().getId(), Exchange.class);
    if (exchange5 != null) {
        final Company ownercompany6 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange5.getOwnerCompany().getId(), Company.class);
        if (ownercompany6 != null) {
            final Country country7 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany6.getCountry().getId(), Country.class);
            if (country7 != null) {
            }
        }
        final City locationcity8 = (City) invokeModule(CITY_MODULE + "/city/" + exchange5.getLocationCity().getId(), City.class);
        if (locationcity8 != null) {
            final Country country9 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity8.getCountry().getId(), Country.class);
            if (country9 != null) {
            }
        }
        final Country locationcountry10 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange5.getLocationCountry().getId(), Country.class);
        if (locationcountry10 != null) {
        }
    }
    final QuoteLevel quotelevel11 = (QuoteLevel) invokeModule(QUOTE_LEVEL_MODULE + "/quotelevel/" + marketmakerquotepermission.getQuoteLevel().getId(), QuoteLevel.class);
    if (quotelevel11 != null) {
        final Exchange exchange12 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + quotelevel11.getExchange().getId(), Exchange.class);
        if (exchange12 != null) {
            final Company ownercompany13 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange12.getOwnerCompany().getId(), Company.class);
            if (ownercompany13 != null) {
                final Country country14 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany13.getCountry().getId(), Country.class);
                if (country14 != null) {
                }
            }
            final City locationcity15 = (City) invokeModule(CITY_MODULE + "/city/" + exchange12.getLocationCity().getId(), City.class);
            if (locationcity15 != null) {
                final Country country16 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity15.getCountry().getId(), Country.class);
                if (country16 != null) {
                }
            }
            final Country locationcountry17 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange12.getLocationCountry().getId(), Country.class);
            if (locationcountry17 != null) {
            }
        }
    }
}
return marketmakerquotepermission;


Overview

Summary

ContactDonateImprint