Overview

Summary

ContactDonateImprint


Appendix E-13: OWNERSHIP (UI prompt)


OwnershipMarketTierModuleNasdaq

Properties (5)

PropertyTypeEntityReferenceModule
(1) EndDateDATEOwnership
(2) OwnershipTypeSTRINGOwnership
(3) ParentCompanyINTOwnershipCompanyCompanyModule
(4) StartDateDATEOwnership
(5) SubsidiaryCompanyINTOwnershipCompanyCompanyModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /ownership/subsidiarycompany/{id}findAllOwnershipOfSubsidiaryCompany(id)MarketTierModuleGETCompany Ownership
(2) /ownership/{id}updateOwnershipById(ownership)MarketTierModulePUTOwnership
(3) /ownership/parentcompany/{id}findAllOwnershipOfParentCompany(id)MarketTierModuleGETCompany Ownership
(4) /ownershipfindAllOwnership()MarketTierModuleGETOwnership
(5) /ownership/{id}deleteOwnershipById(id)MarketTierModuleDELETEOwnership
(6) /ownershipinsertOwnership(ownership)MarketTierModulePOSTOwnership
(7) /ownership/{id}findOwnershipById(id)MarketTierModuleGETOwnership





Example:

final Ownership ownership = (Ownership) invokeModule(MARKET_TIER_MODULE + "/ownership/" + id, Ownership.class);
if (ownership != null) {
    final Company parentcompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + ownership.getParentCompany().getId(), Company.class);
    if (parentcompany1 != null) {
        final Country country2 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + parentcompany1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final Company subsidiarycompany3 = (Company) invokeModule(COMPANY_MODULE + "/company/" + ownership.getSubsidiaryCompany().getId(), Company.class);
    if (subsidiarycompany3 != null) {
        final Country country4 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + subsidiarycompany3.getCountry().getId(), Country.class);
        if (country4 != null) {
        }
    }
}
return ownership;


Overview

Summary

ContactDonateImprint