Overview

Summary

ContactDonateImprint


1. CITY MODULE (UI prompt)



Module Entities (7)

EntityAliasModuleGlobal Schema
(1) AcquisitionAcquisitionCityModuleNasdaq
(2) CityCityCityModuleNasdaq
(3) CompanyCompanyCompanyModuleNasdaq
(4) CountryCountryExchangeModuleNasdaq
(5) ExchangeExchangeExchangeModuleNasdaq
(6) ExchangeVenueExchangeVenueCityModuleNasdaq
(7) TradingVolumeStatTradingVolumeStatCityModuleNasdaq

Module Interfaces (26)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /acquisitionfindAllAcquisition()CityModuleGETAcquisition
(2) /cityfindAllCity()CityModuleGETCity
(3) /exchangevenue/exchange/{id}findAllExchangeVenueOfExchange(id)CityModuleGETExchange ExchangeVenue
(4) /exchangevenue/{id}updateExchangeVenueById(exchangevenue)CityModulePUTExchangeVenue
(5) /acquisition/{id}findAcquisitionById(id)CityModuleGETAcquisition
(6) /city/{id}findCityById(id)CityModuleGETCity
(7) /city/{id}updateCityById(city)CityModulePUTCity
(8) /acquisitioninsertAcquisition(acquisition)CityModulePOSTAcquisition
(9) /exchangevenuefindAllExchangeVenue()CityModuleGETExchangeVenue
(10) /acquisition/{id}deleteAcquisitionById(id)CityModuleDELETEAcquisition
(11) /tradingvolumestatinsertTradingVolumeStat(tradingvolumestat)CityModulePOSTTradingVolumeStat
(12) /exchangevenue/city/{id}findAllExchangeVenueOfCity(id)CityModuleGETCity ExchangeVenue
(13) /cityinsertCity(city)CityModulePOSTCity
(14) /tradingvolumestat/{id}deleteTradingVolumeStatById(id)CityModuleDELETETradingVolumeStat
(15) /acquisition/targetcompany/{id}findAllAcquisitionOfTargetCompany(id)CityModuleGETCompany Acquisition
(16) /tradingvolumestat/{id}updateTradingVolumeStatById(tradingvolumestat)CityModulePUTTradingVolumeStat
(17) /city/country/{id}findAllCityOfCountry(id)CityModuleGETCountry City
(18) /tradingvolumestat/exchange/{id}findAllTradingVolumeStatOfExchange(id)CityModuleGETExchange TradingVolumeStat
(19) /city/{id}deleteCityById(id)CityModuleDELETECity
(20) /acquisition/acquirercompany/{id}findAllAcquisitionOfAcquirerCompany(id)CityModuleGETCompany Acquisition
(21) /acquisition/{id}updateAcquisitionById(acquisition)CityModulePUTAcquisition
(22) /exchangevenue/{id}deleteExchangeVenueById(id)CityModuleDELETEExchangeVenue
(23) /tradingvolumestat/{id}findTradingVolumeStatById(id)CityModuleGETTradingVolumeStat
(24) /tradingvolumestatfindAllTradingVolumeStat()CityModuleGETTradingVolumeStat
(25) /exchangevenueinsertExchangeVenue(exchangevenue)CityModulePOSTExchangeVenue
(26) /exchangevenue/{id}findExchangeVenueById(id)CityModuleGETExchangeVenue






1.1 ACQUISITION


AcquisitionCityModuleNasdaq

Properties (6)

PropertyTypeEntityReferenceModule
(1) AcquirerCompanyINTAcquisitionCompanyCompanyModule
(2) AmountUsdDOUBLEAcquisition
(3) AnnouncementDateDATEAcquisition
(4) CloseDateDATEAcquisition
(5) DescriptionSTRINGAcquisition
(6) TargetCompanyINTAcquisitionCompanyCompanyModule





Example:

final Acquisition acquisition = (Acquisition) invokeModule(CITY_MODULE + "/acquisition/" + id, Acquisition.class);
if (acquisition != null) {
    final Company acquirercompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + acquisition.getAcquirerCompany().getId(), Company.class);
    if (acquirercompany1 != null) {
        final Country country2 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + acquirercompany1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final Company targetcompany3 = (Company) invokeModule(COMPANY_MODULE + "/company/" + acquisition.getTargetCompany().getId(), Company.class);
    if (targetcompany3 != null) {
        final Country country4 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + targetcompany3.getCountry().getId(), Country.class);
        if (country4 != null) {
        }
    }
}
return acquisition;


1.2 CITY


CityCityModuleNasdaq

Properties (2)

PropertyTypeEntityReferenceModule
(1) CountryINTCityCountryExchangeModule
(2) NameSTRINGCity





Example:

final City city = (City) invokeModule(CITY_MODULE + "/city/" + id, City.class);
if (city != null) {
    final Country country1 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + city.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return city;


1.3 EXCHANGE VENUE


ExchangeVenueCityModuleNasdaq

Properties (3)

PropertyTypeEntityReferenceModule
(1) CityINTExchangeVenueCityCityModule
(2) ExchangeINTExchangeVenueExchangeExchangeModule
(3) IsPrimaryBOOLExchangeVenue





Example:

final ExchangeVenue exchangevenue = (ExchangeVenue) invokeModule(CITY_MODULE + "/exchangevenue/" + id, ExchangeVenue.class);
if (exchangevenue != null) {
    final Exchange exchange1 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + exchangevenue.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 City city7 = (City) invokeModule(CITY_MODULE + "/city/" + exchangevenue.getCity().getId(), City.class);
    if (city7 != null) {
        final Country country8 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + city7.getCountry().getId(), Country.class);
        if (country8 != null) {
        }
    }
}
return exchangevenue;


1.4 TRADING VOLUME STAT


TradingVolumeStatCityModuleNasdaq

Properties (4)

PropertyTypeEntityReferenceModule
(1) AverageDailyTradesLONGTradingVolumeStat
(2) ExchangeINTTradingVolumeStatExchangeExchangeModule
(3) MarketSharePercentDOUBLETradingVolumeStat
(4) YearINTTradingVolumeStat





Example:

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


Overview

Summary

ContactDonateImprint