Overview

Summary

ContactDonateImprint


Appendix E-1: INDEX MEMBERSHIP (UI prompt)


IndexMembershipStockListingModuleUber

Properties (4)

PropertyTypeEntityReferenceModule
(1) EndDateDATEIndexMembership
(2) IndexNameSTRINGIndexMembership
(3) StartDateDATEIndexMembership
(4) StockListingLONGIndexMembershipStockListingStockListingModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /indexmembership/{id}deleteIndexMembershipById(id)StockListingModuleDELETEIndexMembership
(2) /indexmembership/stocklisting/{id}findAllIndexMembershipOfStockListing(id)StockListingModuleGETStockListing IndexMembership
(3) /indexmembership/{id}updateIndexMembershipById(indexmembership)StockListingModulePUTIndexMembership
(4) /indexmembership/{id}findIndexMembershipById(id)StockListingModuleGETIndexMembership
(5) /indexmembershipinsertIndexMembership(indexmembership)StockListingModulePOSTIndexMembership
(6) /indexmembershipfindAllIndexMembership()StockListingModuleGETIndexMembership





Example:

final IndexMembership indexmembership = (IndexMembership) invokeModule(STOCK_LISTING_MODULE + "/indexmembership/" + id, IndexMembership.class);
if (indexmembership != null) {
    final StockListing stocklisting1 = (StockListing) invokeModule(STOCK_LISTING_MODULE + "/stocklisting/" + indexmembership.getStockListing().getId(), StockListing.class);
    if (stocklisting1 != null) {
        final Company company2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + stocklisting1.getCompany().getId(), Company.class);
        if (company2 != null) {
        }
    }
}
return indexmembership;


Overview

Summary

ContactDonateImprint