Overview

Summary

ContactDonateImprint


Appendix E-7: EXCHANGE VENUE (UI prompt)


ExchangeVenueCityModuleNasdaq

Properties (3)

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


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /exchangevenue/{id}deleteExchangeVenueById(id)CityModuleDELETEExchangeVenue
(2) /exchangevenue/exchange/{id}findAllExchangeVenueOfExchange(id)CityModuleGETExchange ExchangeVenue
(3) /exchangevenue/{id}updateExchangeVenueById(exchangevenue)CityModulePUTExchangeVenue
(4) /exchangevenue/city/{id}findAllExchangeVenueOfCity(id)CityModuleGETCity ExchangeVenue
(5) /exchangevenueinsertExchangeVenue(exchangevenue)CityModulePOSTExchangeVenue
(6) /exchangevenuefindAllExchangeVenue()CityModuleGETExchangeVenue
(7) /exchangevenue/{id}findExchangeVenueById(id)CityModuleGETExchangeVenue





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;


Overview

Summary

ContactDonateImprint