Overview

Summary

ContactDonateImprint


Appendix E-26: ORDER BOOK FEATURE (UI prompt)


OrderBookFeatureMarketTierModuleNasdaq

Properties (4)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGOrderBookFeature
(2) ExchangeINTOrderBookFeatureExchangeExchangeModule
(3) LaunchDateDATEOrderBookFeature
(4) NameSTRINGOrderBookFeature


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /orderbookfeatureinsertOrderBookFeature(orderbookfeature)MarketTierModulePOSTOrderBookFeature
(2) /orderbookfeaturefindAllOrderBookFeature()MarketTierModuleGETOrderBookFeature
(3) /orderbookfeature/{id}findOrderBookFeatureById(id)MarketTierModuleGETOrderBookFeature
(4) /orderbookfeature/{id}updateOrderBookFeatureById(orderbookfeature)MarketTierModulePUTOrderBookFeature
(5) /orderbookfeature/{id}deleteOrderBookFeatureById(id)MarketTierModuleDELETEOrderBookFeature
(6) /orderbookfeature/exchange/{id}findAllOrderBookFeatureOfExchange(id)MarketTierModuleGETExchange OrderBookFeature





Example:

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


Overview

Summary

ContactDonateImprint