Overview

Summary

ContactDonateImprint


Appendix E-28: INVESTOR (UI prompt)


InvestorCountryModuleSpotify

Properties (3)

PropertyTypeEntityReferenceModule
(1) CountryLONGInvestorCountryCountryModule
(2) NameSTRINGInvestor
(3) TypeSTRINGInvestor


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /investorfindAllInvestor()CountryModuleGETInvestor
(2) /investor/country/{id}findAllInvestorOfCountry(id)CountryModuleGETCountry Investor
(3) /investor/{id}deleteInvestorById(id)CountryModuleDELETEInvestor
(4) /investmentroundinvestor/investor/{id}findAllInvestmentRoundInvestorOfInvestor(id)CountryModuleGETInvestor InvestmentRoundInvestor
(5) /investor/{id}updateInvestorById(investor)CountryModulePUTInvestor
(6) /investorinsertInvestor(investor)CountryModulePOSTInvestor
(7) /investor/{id}findInvestorById(id)CountryModuleGETInvestor





Example:

final Investor investor = (Investor) invokeModule(COUNTRY_MODULE + "/investor/" + id, Investor.class);
if (investor != null) {
    final Country country1 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + investor.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return investor;


Overview

Summary

ContactDonateImprint