Overview

Summary

ContactDonateImprint


Appendix E-12: INDEX CONSTITUENT (UI prompt)


IndexConstituentListingModuleNasdaq

Properties (5)

PropertyTypeEntityReferenceModule
(1) EffectiveFromDATEIndexConstituent
(2) EffectiveToDATEIndexConstituent
(3) IndexINTIndexConstituentIndexListingModule
(4) ListingINTIndexConstituentListingListingModule
(5) WeightPercentDOUBLEIndexConstituent


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /indexconstituent/{id}findIndexConstituentById(id)ListingModuleGETIndexConstituent
(2) /indexconstituentinsertIndexConstituent(indexconstituent)ListingModulePOSTIndexConstituent
(3) /indexconstituent/{id}deleteIndexConstituentById(id)ListingModuleDELETEIndexConstituent
(4) /indexconstituentfindAllIndexConstituent()ListingModuleGETIndexConstituent
(5) /indexconstituent/index/{id}findAllIndexConstituentOfIndex(id)ListingModuleGETIndex IndexConstituent
(6) /indexconstituent/{id}updateIndexConstituentById(indexconstituent)ListingModulePUTIndexConstituent
(7) /indexconstituent/listing/{id}findAllIndexConstituentOfListing(id)ListingModuleGETListing IndexConstituent





Example:

final IndexConstituent indexconstituent = (IndexConstituent) invokeModule(LISTING_MODULE + "/indexconstituent/" + id, IndexConstituent.class);
if (indexconstituent != null) {
    final Listing listing1 = (Listing) invokeModule(LISTING_MODULE + "/listing/" + indexconstituent.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) {
            }
        }
    }
    final Index index17 = (Index) invokeModule(LISTING_MODULE + "/index/" + indexconstituent.getIndex().getId(), Index.class);
    if (index17 != null) {
        final Exchange exchange18 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + index17.getExchange().getId(), Exchange.class);
        if (exchange18 != null) {
            final Company ownercompany19 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange18.getOwnerCompany().getId(), Company.class);
            if (ownercompany19 != null) {
                final Country country20 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany19.getCountry().getId(), Country.class);
                if (country20 != null) {
                }
            }
            final City locationcity21 = (City) invokeModule(CITY_MODULE + "/city/" + exchange18.getLocationCity().getId(), City.class);
            if (locationcity21 != null) {
                final Country country22 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity21.getCountry().getId(), Country.class);
                if (country22 != null) {
                }
            }
            final Country locationcountry23 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange18.getLocationCountry().getId(), Country.class);
            if (locationcountry23 != null) {
            }
        }
    }
}
return indexconstituent;


Overview

Summary

ContactDonateImprint