Overview

Summary

ContactDonateImprint


Appendix E-15: INVESTMENT ROUND INVESTOR (UI prompt)


InvestmentRoundInvestorCountryModuleSpotify

Properties (3)

PropertyTypeEntityReferenceModule
(1) InvestmentRoundLONGInvestmentRoundInvestorInvestmentRoundCompanyEntityModule
(2) InvestorLONGInvestmentRoundInvestorInvestorCountryModule
(3) OwnershipPercentDOUBLEInvestmentRoundInvestor


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /investmentroundinvestor/investmentround/{id}findAllInvestmentRoundInvestorOfInvestmentRound(id)CountryModuleGETInvestmentRound InvestmentRoundInvestor
(2) /investmentroundinvestor/{id}updateInvestmentRoundInvestorById(investmentroundinvestor)CountryModulePUTInvestmentRoundInvestor
(3) /investmentroundinvestor/{id}findInvestmentRoundInvestorById(id)CountryModuleGETInvestmentRoundInvestor
(4) /investmentroundinvestor/investor/{id}findAllInvestmentRoundInvestorOfInvestor(id)CountryModuleGETInvestor InvestmentRoundInvestor
(5) /investmentroundinvestorfindAllInvestmentRoundInvestor()CountryModuleGETInvestmentRoundInvestor
(6) /investmentroundinvestor/{id}deleteInvestmentRoundInvestorById(id)CountryModuleDELETEInvestmentRoundInvestor
(7) /investmentroundinvestorinsertInvestmentRoundInvestor(investmentroundinvestor)CountryModulePOSTInvestmentRoundInvestor





Example:

final InvestmentRoundInvestor investmentroundinvestor = (InvestmentRoundInvestor) invokeModule(COUNTRY_MODULE + "/investmentroundinvestor/" + id, InvestmentRoundInvestor.class);
if (investmentroundinvestor != null) {
    final Investor investor1 = (Investor) invokeModule(COUNTRY_MODULE + "/investor/" + investmentroundinvestor.getInvestor().getId(), Investor.class);
    if (investor1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + investor1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final InvestmentRound investmentround3 = (InvestmentRound) invokeModule(COMPANY_ENTITY_MODULE + "/investmentround/" + investmentroundinvestor.getInvestmentRound().getId(), InvestmentRound.class);
    if (investmentround3 != null) {
        final CompanyEntity companyentity4 = (CompanyEntity) invokeModule(COMPANY_ENTITY_MODULE + "/companyentity/" + investmentround3.getCompanyEntity().getId(), CompanyEntity.class);
        if (companyentity4 != null) {
            final Country country5 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + companyentity4.getCountry().getId(), Country.class);
            if (country5 != null) {
            }
        }
    }
}
return investmentroundinvestor;


Overview

Summary

ContactDonateImprint