Overview

Summary

ServicesContactDonateAboutImprint


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


FundingRoundInvestorMessageThreadModuleAirbnb

Properties (2)

PropertyTypeEntityReferenceModule
(1) FundingRoundLONGFundingRoundInvestorFundingRoundCompanyModule
(2) InvestorLONGFundingRoundInvestorInvestorCountryModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /fundingroundinvestor/fundinground/{id}findAllFundingRoundInvestorOfFundingRound(id)MessageThreadModuleGETFundingRound FundingRoundInvestor
(2) /fundingroundinvestor/{id}deleteFundingRoundInvestorById(id)MessageThreadModuleDELETEFundingRoundInvestor
(3) /fundingroundinvestor/{id}findFundingRoundInvestorById(id)MessageThreadModuleGETFundingRoundInvestor
(4) /fundingroundinvestor/{id}updateFundingRoundInvestorById(fundingroundinvestor)MessageThreadModulePUTFundingRoundInvestor
(5) /fundingroundinvestorinsertFundingRoundInvestor(fundingroundinvestor)MessageThreadModulePOSTFundingRoundInvestor
(6) /fundingroundinvestor/investor/{id}findAllFundingRoundInvestorOfInvestor(id)MessageThreadModuleGETInvestor FundingRoundInvestor
(7) /fundingroundinvestorfindAllFundingRoundInvestor()MessageThreadModuleGETFundingRoundInvestor





Example:

final FundingRoundInvestor fundingroundinvestor = (FundingRoundInvestor) invokeModule(MESSAGE_THREAD_MODULE + "/fundingroundinvestor/" + id, FundingRoundInvestor.class);
if (fundingroundinvestor != null) {
    final Investor investor1 = (Investor) invokeModule(COUNTRY_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(COMPANY_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

ServicesContactDonateAboutImprint