Overview

Summary

ContactDonateImprint


Appendix E-27: SECURITY (UI prompt)


SecurityRegulatorModuleNasdaq

Properties (4)

PropertyTypeEntityReferenceModule
(1) CurrencySTRINGSecurity
(2) IsActiveBOOLSecurity
(3) ListingINTSecurityListingListingModule
(4) SecurityTypeSTRINGSecurity


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /security/{id}updateSecurityById(security)RegulatorModulePUTSecurity
(2) /security/listing/{id}findAllSecurityOfListing(id)RegulatorModuleGETListing Security
(3) /security/{id}deleteSecurityById(id)RegulatorModuleDELETESecurity
(4) /security/{id}findSecurityById(id)RegulatorModuleGETSecurity
(5) /securityfindAllSecurity()RegulatorModuleGETSecurity
(6) /securityinsertSecurity(security)RegulatorModulePOSTSecurity





Example:

final Security security = (Security) invokeModule(REGULATOR_MODULE + "/security/" + id, Security.class);
if (security != null) {
    final Listing listing1 = (Listing) invokeModule(LISTING_MODULE + "/listing/" + security.getListing().getId(), Listing.class);
    if (listing1 != null) {
        final Company company2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + listing1.getCompany().getId(), Company.class);
        if (company2 != null) {
            final Country country3 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + company2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final MarketTier markettier4 = (MarketTier) invokeModule(MARKET_TIER_MODULE + "/markettier/" + listing1.getMarketTier().getId(), MarketTier.class);
        if (markettier4 != null) {
            final Exchange exchange5 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + markettier4.getExchange().getId(), Exchange.class);
            if (exchange5 != null) {
                final Company ownercompany6 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange5.getOwnerCompany().getId(), Company.class);
                if (ownercompany6 != null) {
                    final Country country7 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany6.getCountry().getId(), Country.class);
                    if (country7 != null) {
                    }
                }
                final City locationcity8 = (City) invokeModule(CITY_MODULE + "/city/" + exchange5.getLocationCity().getId(), City.class);
                if (locationcity8 != null) {
                    final Country country9 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity8.getCountry().getId(), Country.class);
                    if (country9 != null) {
                    }
                }
                final Country locationcountry10 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange5.getLocationCountry().getId(), Country.class);
                if (locationcountry10 != null) {
                }
            }
        }
        final Exchange exchange11 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + listing1.getExchange().getId(), Exchange.class);
        if (exchange11 != null) {
            final Company ownercompany12 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange11.getOwnerCompany().getId(), Company.class);
            if (ownercompany12 != null) {
                final Country country13 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany12.getCountry().getId(), Country.class);
                if (country13 != null) {
                }
            }
            final City locationcity14 = (City) invokeModule(CITY_MODULE + "/city/" + exchange11.getLocationCity().getId(), City.class);
            if (locationcity14 != null) {
                final Country country15 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity14.getCountry().getId(), Country.class);
                if (country15 != null) {
                }
            }
            final Country locationcountry16 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange11.getLocationCountry().getId(), Country.class);
            if (locationcountry16 != null) {
            }
        }
    }
}
return security;


Overview

Summary

ContactDonateImprint