Overview

Summary

ContactDonateImprint


3. EXCHANGE MODULE (UI prompt)



Module Entities (23)

EntityAliasModuleGlobal Schema
(1) CityCityCityModuleNasdaq
(2) CompanyCompanyCompanyModuleNasdaq
(3) CountryCountryExchangeModuleNasdaq
(4) EventEventSustainabilityInitiativeModuleNasdaq
(5) ExchangeExchangeExchangeModuleNasdaq
(6) ExchangeMembershipInInitiativeExchangeMembershipInInitiativeSustainabilityInitiativeModuleNasdaq
(7) ExchangeVenueExchangeVenueCityModuleNasdaq
(8) IndexIndexListingModuleNasdaq
(9) InspectionInspectionExchangeModuleNasdaq
(10) LegalActionLegalActionRegulatorModuleNasdaq
(11) ListingListingListingModuleNasdaq
(12) ListingFeeScheduleListingFeeScheduleMarketTierModuleNasdaq
(13) MarketMakerMarketMakerRegulatorModuleNasdaq
(14) MarketMakerQuotePermissionMarketMakerQuotePermissionQuoteLevelModuleNasdaq
(15) MarketTierMarketTierMarketTierModuleNasdaq
(16) MergerAttemptMergerAttemptSustainabilityInitiativeModuleNasdaq
(17) OrderBookFeatureOrderBookFeatureMarketTierModuleNasdaq
(18) PlatformAdoptionPlatformAdoptionCompanyModuleNasdaq
(19) QuoteLevelQuoteLevelQuoteLevelModuleNasdaq
(20) RegulatorRegulatorRegulatorModuleNasdaq
(21) TradingScheduleChangeTradingScheduleChangeQuoteLevelModuleNasdaq
(22) TradingSessionTradingSessionListingModuleNasdaq
(23) TradingVolumeStatTradingVolumeStatCityModuleNasdaq

Module Interfaces (20)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /inspection/regulator/{id}findAllInspectionOfRegulator(id)ExchangeModuleGETRegulator Inspection
(2) /exchange/{id}findExchangeById(id)ExchangeModuleGETExchange
(3) /inspectionfindAllInspection()ExchangeModuleGETInspection
(4) /inspection/exchange/{id}findAllInspectionOfExchange(id)ExchangeModuleGETExchange Inspection
(5) /inspection/{id}updateInspectionById(inspection)ExchangeModulePUTInspection
(6) /exchange/{id}deleteExchangeById(id)ExchangeModuleDELETEExchange
(7) /countryfindAllCountry()ExchangeModuleGETCountry
(8) /country/{id}deleteCountryById(id)ExchangeModuleDELETECountry
(9) /exchange/locationcountry/{id}findAllExchangeOfLocationCountry(id)ExchangeModuleGETCountry Exchange
(10) /exchange/{id}updateExchangeById(exchange)ExchangeModulePUTExchange
(11) /exchangeinsertExchange(exchange)ExchangeModulePOSTExchange
(12) /country/{id}findCountryById(id)ExchangeModuleGETCountry
(13) /country/{id}updateCountryById(country)ExchangeModulePUTCountry
(14) /inspection/{id}findInspectionById(id)ExchangeModuleGETInspection
(15) /countryinsertCountry(country)ExchangeModulePOSTCountry
(16) /exchangefindAllExchange()ExchangeModuleGETExchange
(17) /inspection/{id}deleteInspectionById(id)ExchangeModuleDELETEInspection
(18) /exchange/locationcity/{id}findAllExchangeOfLocationCity(id)ExchangeModuleGETCity Exchange
(19) /inspectioninsertInspection(inspection)ExchangeModulePOSTInspection
(20) /exchange/ownercompany/{id}findAllExchangeOfOwnerCompany(id)ExchangeModuleGETCompany Exchange






3.1 COUNTRY


CountryExchangeModuleNasdaq

Properties (3)

PropertyTypeEntityReferenceModule
(1) IsoCodeSTRINGCountry
(2) NameSTRINGCountry
(3) RegionSTRINGCountry





Example:

final Country country = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + id, Country.class);
if (country != null) {
}
return country;


3.2 EXCHANGE


ExchangeExchangeModuleNasdaq

Properties (11)

PropertyTypeEntityReferenceModule
(1) CurrencySTRINGExchange
(2) FoundedDateDATEExchange
(3) IsElectronicBOOLExchange
(4) ListingsCountINTExchange
(5) LocationCityINTExchangeCityCityModule
(6) LocationCountryINTExchangeCountryExchangeModule
(7) MarketCapUsdDOUBLEExchange
(8) NameSTRINGExchange
(9) OwnerCompanyINTExchangeCompanyCompanyModule
(10) TypeSTRINGExchange
(11) WebsiteSTRINGExchange





Example:

final Exchange exchange = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + id, Exchange.class);
if (exchange != null) {
    final Company ownercompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange.getOwnerCompany().getId(), Company.class);
    if (ownercompany1 != null) {
        final Country country2 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final City locationcity3 = (City) invokeModule(CITY_MODULE + "/city/" + exchange.getLocationCity().getId(), City.class);
    if (locationcity3 != null) {
        final Country country4 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity3.getCountry().getId(), Country.class);
        if (country4 != null) {
        }
    }
    final Country locationcountry5 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange.getLocationCountry().getId(), Country.class);
    if (locationcountry5 != null) {
    }
}
return exchange;


3.3 INSPECTION


InspectionExchangeModuleNasdaq

Properties (5)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGInspection
(2) ExchangeINTInspectionExchangeExchangeModule
(3) InspectionDateDATEInspection
(4) IsAntitrustRelatedBOOLInspection
(5) RegulatorINTInspectionRegulatorRegulatorModule





Example:

final Inspection inspection = (Inspection) invokeModule(EXCHANGE_MODULE + "/inspection/" + id, Inspection.class);
if (inspection != null) {
    final Regulator regulator1 = (Regulator) invokeModule(REGULATOR_MODULE + "/regulator/" + inspection.getRegulator().getId(), Regulator.class);
    if (regulator1 != null) {
        final Country country2 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + regulator1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final Exchange exchange3 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + inspection.getExchange().getId(), Exchange.class);
    if (exchange3 != null) {
        final Company ownercompany4 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange3.getOwnerCompany().getId(), Company.class);
        if (ownercompany4 != null) {
            final Country country5 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany4.getCountry().getId(), Country.class);
            if (country5 != null) {
            }
        }
        final City locationcity6 = (City) invokeModule(CITY_MODULE + "/city/" + exchange3.getLocationCity().getId(), City.class);
        if (locationcity6 != null) {
            final Country country7 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity6.getCountry().getId(), Country.class);
            if (country7 != null) {
            }
        }
        final Country locationcountry8 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange3.getLocationCountry().getId(), Country.class);
        if (locationcountry8 != null) {
        }
    }
}
return inspection;


Overview

Summary

ContactDonateImprint