Overview

Summary

ContactDonateImprint


5. MARKET TIER MODULE (UI prompt)



Module Entities (7)

EntityAliasModuleGlobal Schema
(1) CompanyCompanyCompanyModuleNasdaq
(2) ExchangeExchangeExchangeModuleNasdaq
(3) ListingListingListingModuleNasdaq
(4) ListingFeeScheduleListingFeeScheduleMarketTierModuleNasdaq
(5) MarketTierMarketTierMarketTierModuleNasdaq
(6) OrderBookFeatureOrderBookFeatureMarketTierModuleNasdaq
(7) OwnershipOwnershipMarketTierModuleNasdaq

Module Interfaces (26)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /orderbookfeature/{id}findOrderBookFeatureById(id)MarketTierModuleGETOrderBookFeature
(2) /markettier/{id}findMarketTierById(id)MarketTierModuleGETMarketTier
(3) /ownership/parentcompany/{id}findAllOwnershipOfParentCompany(id)MarketTierModuleGETCompany Ownership
(4) /ownershipinsertOwnership(ownership)MarketTierModulePOSTOwnership
(5) /orderbookfeaturefindAllOrderBookFeature()MarketTierModuleGETOrderBookFeature
(6) /ownership/{id}findOwnershipById(id)MarketTierModuleGETOwnership
(7) /markettier/{id}deleteMarketTierById(id)MarketTierModuleDELETEMarketTier
(8) /orderbookfeature/{id}deleteOrderBookFeatureById(id)MarketTierModuleDELETEOrderBookFeature
(9) /ownership/subsidiarycompany/{id}findAllOwnershipOfSubsidiaryCompany(id)MarketTierModuleGETCompany Ownership
(10) /ownership/{id}deleteOwnershipById(id)MarketTierModuleDELETEOwnership
(11) /listingfeeschedule/markettier/{id}findAllListingFeeScheduleOfMarketTier(id)MarketTierModuleGETMarketTier ListingFeeSchedule
(12) /markettier/exchange/{id}findAllMarketTierOfExchange(id)MarketTierModuleGETExchange MarketTier
(13) /orderbookfeatureinsertOrderBookFeature(orderbookfeature)MarketTierModulePOSTOrderBookFeature
(14) /listingfeeschedule/exchange/{id}findAllListingFeeScheduleOfExchange(id)MarketTierModuleGETExchange ListingFeeSchedule
(15) /listingfeescheduleinsertListingFeeSchedule(listingfeeschedule)MarketTierModulePOSTListingFeeSchedule
(16) /markettierinsertMarketTier(markettier)MarketTierModulePOSTMarketTier
(17) /listingfeeschedule/{id}findListingFeeScheduleById(id)MarketTierModuleGETListingFeeSchedule
(18) /listingfeeschedule/{id}updateListingFeeScheduleById(listingfeeschedule)MarketTierModulePUTListingFeeSchedule
(19) /orderbookfeature/{id}updateOrderBookFeatureById(orderbookfeature)MarketTierModulePUTOrderBookFeature
(20) /ownershipfindAllOwnership()MarketTierModuleGETOwnership
(21) /orderbookfeature/exchange/{id}findAllOrderBookFeatureOfExchange(id)MarketTierModuleGETExchange OrderBookFeature
(22) /listingfeeschedulefindAllListingFeeSchedule()MarketTierModuleGETListingFeeSchedule
(23) /markettier/{id}updateMarketTierById(markettier)MarketTierModulePUTMarketTier
(24) /markettierfindAllMarketTier()MarketTierModuleGETMarketTier
(25) /listingfeeschedule/{id}deleteListingFeeScheduleById(id)MarketTierModuleDELETEListingFeeSchedule
(26) /ownership/{id}updateOwnershipById(ownership)MarketTierModulePUTOwnership






5.1 LISTING FEE SCHEDULE


ListingFeeScheduleMarketTierModuleNasdaq

Properties (7)

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





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;


5.2 MARKET TIER


MarketTierMarketTierModuleNasdaq

Properties (7)

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





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;


5.3 ORDER BOOK FEATURE


OrderBookFeatureMarketTierModuleNasdaq

Properties (4)

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





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;


5.4 OWNERSHIP


OwnershipMarketTierModuleNasdaq

Properties (5)

PropertyTypeEntityReferenceModule
(1) EndDateDATEOwnership
(2) OwnershipTypeSTRINGOwnership
(3) ParentCompanyINTOwnershipCompanyCompanyModule
(4) StartDateDATEOwnership
(5) SubsidiaryCompanyINTOwnershipCompanyCompanyModule





Example:

final Ownership ownership = (Ownership) invokeModule(MARKET_TIER_MODULE + "/ownership/" + id, Ownership.class);
if (ownership != null) {
    final Company parentcompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + ownership.getParentCompany().getId(), Company.class);
    if (parentcompany1 != null) {
        final Country country2 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + parentcompany1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final Company subsidiarycompany3 = (Company) invokeModule(COMPANY_MODULE + "/company/" + ownership.getSubsidiaryCompany().getId(), Company.class);
    if (subsidiarycompany3 != null) {
        final Country country4 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + subsidiarycompany3.getCountry().getId(), Country.class);
        if (country4 != null) {
        }
    }
}
return ownership;


Overview

Summary

ContactDonateImprint