Overview

Summary

ContactDonateImprint


Appendix E-10: MARKET TIER (UI prompt)


MarketTierMarketTierModuleNasdaq

Properties (7)

PropertyTypeEntityReferenceModule
(1) CodeSTRINGMarketTier
(2) DescriptionSTRINGMarketTier
(3) ExchangeINTMarketTierExchangeExchangeModule
(4) MinMarketCapUsdDOUBLEMarketTier
(5) MinPublicFloatPercentDOUBLEMarketTier
(6) MinShareholdersINTMarketTier
(7) NameSTRINGMarketTier


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /listing/markettier/{id}findAllListingOfMarketTier(id)ListingModuleGETMarketTier Listing
(2) /markettier/{id}updateMarketTierById(markettier)MarketTierModulePUTMarketTier
(3) /markettierfindAllMarketTier()MarketTierModuleGETMarketTier
(4) /markettier/{id}findMarketTierById(id)MarketTierModuleGETMarketTier
(5) /markettier/{id}deleteMarketTierById(id)MarketTierModuleDELETEMarketTier
(6) /listingfeeschedule/markettier/{id}findAllListingFeeScheduleOfMarketTier(id)MarketTierModuleGETMarketTier ListingFeeSchedule
(7) /markettier/exchange/{id}findAllMarketTierOfExchange(id)MarketTierModuleGETExchange MarketTier
(8) /markettierinsertMarketTier(markettier)MarketTierModulePOSTMarketTier





Example:

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


Overview

Summary

ContactDonateImprint