Overview

Summary

ContactDonateImprint


Appendix E-18: LISTING FEE SCHEDULE (UI prompt)


ListingFeeScheduleMarketTierModuleNasdaq

Properties (7)

PropertyTypeEntityReferenceModule
(1) EffectiveFromDATEListingFeeSchedule
(2) EffectiveToDATEListingFeeSchedule
(3) ExchangeINTListingFeeScheduleExchangeExchangeModule
(4) ForAcquisitionCompaniesBOOLListingFeeSchedule
(5) MarketTierINTListingFeeScheduleMarketTierMarketTierModule
(6) MaxFeeUsdDOUBLEListingFeeSchedule
(7) MinFeeUsdDOUBLEListingFeeSchedule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /listingfeeschedule/{id}deleteListingFeeScheduleById(id)MarketTierModuleDELETEListingFeeSchedule
(2) /listingfeeschedule/{id}findListingFeeScheduleById(id)MarketTierModuleGETListingFeeSchedule
(3) /listingfeeschedulefindAllListingFeeSchedule()MarketTierModuleGETListingFeeSchedule
(4) /listingfeeschedule/{id}updateListingFeeScheduleById(listingfeeschedule)MarketTierModulePUTListingFeeSchedule
(5) /listingfeeschedule/exchange/{id}findAllListingFeeScheduleOfExchange(id)MarketTierModuleGETExchange ListingFeeSchedule
(6) /listingfeeschedule/markettier/{id}findAllListingFeeScheduleOfMarketTier(id)MarketTierModuleGETMarketTier ListingFeeSchedule
(7) /listingfeescheduleinsertListingFeeSchedule(listingfeeschedule)MarketTierModulePOSTListingFeeSchedule





Example:

final ListingFeeSchedule listingfeeschedule = (ListingFeeSchedule) invokeModule(MARKET_TIER_MODULE + "/listingfeeschedule/" + id, ListingFeeSchedule.class);
if (listingfeeschedule != null) {
    final Exchange exchange1 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + listingfeeschedule.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) {
        }
    }
    final MarketTier markettier7 = (MarketTier) invokeModule(MARKET_TIER_MODULE + "/markettier/" + listingfeeschedule.getMarketTier().getId(), MarketTier.class);
    if (markettier7 != null) {
        final Exchange exchange8 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + markettier7.getExchange().getId(), Exchange.class);
        if (exchange8 != null) {
            final Company ownercompany9 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange8.getOwnerCompany().getId(), Company.class);
            if (ownercompany9 != null) {
                final Country country10 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany9.getCountry().getId(), Country.class);
                if (country10 != null) {
                }
            }
            final City locationcity11 = (City) invokeModule(CITY_MODULE + "/city/" + exchange8.getLocationCity().getId(), City.class);
            if (locationcity11 != null) {
                final Country country12 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity11.getCountry().getId(), Country.class);
                if (country12 != null) {
                }
            }
            final Country locationcountry13 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange8.getLocationCountry().getId(), Country.class);
            if (locationcountry13 != null) {
            }
        }
    }
}
return listingfeeschedule;


Overview

Summary

ContactDonateImprint