Overview

Summary

ContactDonateImprint


Appendix E-29: INSPECTION (UI prompt)


InspectionExchangeModuleNasdaq

Properties (5)

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


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /inspection/{id}updateInspectionById(inspection)ExchangeModulePUTInspection
(2) /inspection/regulator/{id}findAllInspectionOfRegulator(id)ExchangeModuleGETRegulator Inspection
(3) /inspectionfindAllInspection()ExchangeModuleGETInspection
(4) /inspectioninsertInspection(inspection)ExchangeModulePOSTInspection
(5) /inspection/{id}deleteInspectionById(id)ExchangeModuleDELETEInspection
(6) /inspection/exchange/{id}findAllInspectionOfExchange(id)ExchangeModuleGETExchange Inspection
(7) /inspection/{id}findInspectionById(id)ExchangeModuleGETInspection





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