Overview

Summary

ContactDonateImprint


Appendix E-36: INVESTOR (UI prompt)


InvestorFundingRoundModuleAirbnb

Properties (4)

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


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /investorfindAllInvestor()FundingRoundModuleGETInvestor
(2) /investorinsertInvestor(investor)FundingRoundModulePOSTInvestor
(3) /investor/{id}findInvestorById(id)FundingRoundModuleGETInvestor
(4) /investor/country/{id}findAllInvestorOfCountry(id)FundingRoundModuleGETCountry Investor
(5) /investor/{id}deleteInvestorById(id)FundingRoundModuleDELETEInvestor
(6) /fundingroundinvestor/investor/{id}findAllFundingRoundInvestorOfInvestor(id)FundingRoundModuleGETInvestor FundingRoundInvestor
(7) /investor/{id}updateInvestorById(investor)FundingRoundModulePUTInvestor





Example:

final Investor investor = (Investor) invokeModule(FUNDING_ROUND_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