Overview

Summary

ContactDonateImprint


Appendix E-21: LEGAL ACTION (UI prompt)


LegalActionRegulatorModuleNasdaq

Properties (5)

PropertyTypeEntityReferenceModule
(1) ActionDateDATELegalAction
(2) ActionTypeSTRINGLegalAction
(3) DescriptionSTRINGLegalAction
(4) ExchangeINTLegalActionExchangeExchangeModule
(5) RegulatorINTLegalActionRegulatorRegulatorModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /legalaction/{id}deleteLegalActionById(id)RegulatorModuleDELETELegalAction
(2) /legalaction/exchange/{id}findAllLegalActionOfExchange(id)RegulatorModuleGETExchange LegalAction
(3) /legalaction/regulator/{id}findAllLegalActionOfRegulator(id)RegulatorModuleGETRegulator LegalAction
(4) /legalaction/{id}updateLegalActionById(legalaction)RegulatorModulePUTLegalAction
(5) /legalactioninsertLegalAction(legalaction)RegulatorModulePOSTLegalAction
(6) /legalaction/{id}findLegalActionById(id)RegulatorModuleGETLegalAction
(7) /legalactionfindAllLegalAction()RegulatorModuleGETLegalAction





Example:

final LegalAction legalaction = (LegalAction) invokeModule(REGULATOR_MODULE + "/legalaction/" + id, LegalAction.class);
if (legalaction != null) {
    final Exchange exchange1 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + legalaction.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 Regulator regulator7 = (Regulator) invokeModule(REGULATOR_MODULE + "/regulator/" + legalaction.getRegulator().getId(), Regulator.class);
    if (regulator7 != null) {
        final Country country8 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + regulator7.getCountry().getId(), Country.class);
        if (country8 != null) {
        }
    }
}
return legalaction;


Overview

Summary

ContactDonateImprint