Overview

Summary

ServicesContactDonateAboutImprint


Appendix E-36: INVESTOR (UI prompt)


InvestorCountryModuleAirbnb

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountryLONGInvestorCountryCountryModule
(2) InvestorTypeSTRINGInvestor
(3) NameSTRINGInvestor
(4) WebsiteSTRINGInvestor


Module Interfaces (7)

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





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

ServicesContactDonateAboutImprint