Overview

Summary

ContactDonateImprint


Appendix E-18: FUNDING ROUND INVESTOR (UI prompt)


FundingRoundInvestorFundingRoundModuleAirbnb

Properties (2)

PropertyTypeEntityReferenceModule
(1) FundingRoundLONGFundingRoundInvestorFundingRoundFundingRoundModule
(2) InvestorLONGFundingRoundInvestorInvestorFundingRoundModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /fundingroundinvestor/{id}findFundingRoundInvestorById(id)FundingRoundModuleGETFundingRoundInvestor
(2) /fundingroundinvestorinsertFundingRoundInvestor(fundingroundinvestor)FundingRoundModulePOSTFundingRoundInvestor
(3) /fundingroundinvestor/{id}deleteFundingRoundInvestorById(id)FundingRoundModuleDELETEFundingRoundInvestor
(4) /fundingroundinvestor/fundinground/{id}findAllFundingRoundInvestorOfFundingRound(id)FundingRoundModuleGETFundingRound FundingRoundInvestor
(5) /fundingroundinvestor/investor/{id}findAllFundingRoundInvestorOfInvestor(id)FundingRoundModuleGETInvestor FundingRoundInvestor
(6) /fundingroundinvestor/{id}updateFundingRoundInvestorById(fundingroundinvestor)FundingRoundModulePUTFundingRoundInvestor
(7) /fundingroundinvestorfindAllFundingRoundInvestor()FundingRoundModuleGETFundingRoundInvestor





Example:

final FundingRoundInvestor fundingroundinvestor = (FundingRoundInvestor) invokeModule(FUNDING_ROUND_MODULE + "/fundingroundinvestor/" + id, FundingRoundInvestor.class);
if (fundingroundinvestor != null) {
    final Investor investor1 = (Investor) invokeModule(FUNDING_ROUND_MODULE + "/investor/" + fundingroundinvestor.getInvestor().getId(), Investor.class);
    if (investor1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + investor1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final FundingRound fundinground3 = (FundingRound) invokeModule(FUNDING_ROUND_MODULE + "/fundinground/" + fundingroundinvestor.getFundingRound().getId(), FundingRound.class);
    if (fundinground3 != null) {
        final Company company4 = (Company) invokeModule(COMPANY_MODULE + "/company/" + fundinground3.getCompany().getId(), Company.class);
        if (company4 != null) {
            final Country country5 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + company4.getCountry().getId(), Country.class);
            if (country5 != null) {
            }
            final City city6 = (City) invokeModule(LISTING_MODULE + "/city/" + company4.getCity().getId(), City.class);
            if (city6 != null) {
                final Country country7 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + city6.getCountry().getId(), Country.class);
                if (country7 != null) {
                }
            }
        }
    }
}
return fundingroundinvestor;


Overview

Summary

ContactDonateImprint