Overview

Summary

ContactDonateImprint


Appendix E-11: REGULATOR (UI prompt)


RegulatorRegulatorModuleNasdaq

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountryINTRegulatorCountryExchangeModule
(2) NameSTRINGRegulator
(3) TypeSTRINGRegulator
(4) WebsiteSTRINGRegulator


Module Interfaces (9)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /inspection/regulator/{id}findAllInspectionOfRegulator(id)ExchangeModuleGETRegulator Inspection
(2) /regulator/{id}findRegulatorById(id)RegulatorModuleGETRegulator
(3) /regulator/country/{id}findAllRegulatorOfCountry(id)RegulatorModuleGETCountry Regulator
(4) /legalaction/regulator/{id}findAllLegalActionOfRegulator(id)RegulatorModuleGETRegulator LegalAction
(5) /regulator/{id}deleteRegulatorById(id)RegulatorModuleDELETERegulator
(6) /regulator/{id}updateRegulatorById(regulator)RegulatorModulePUTRegulator
(7) /marketmaker/regulator/{id}findAllMarketMakerOfRegulator(id)RegulatorModuleGETRegulator MarketMaker
(8) /regulatorfindAllRegulator()RegulatorModuleGETRegulator
(9) /regulatorinsertRegulator(regulator)RegulatorModulePOSTRegulator





Example:

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


Overview

Summary

ContactDonateImprint