Overview

Summary

ContactDonateImprint


Appendix E-9: ACQUISITION (UI prompt)


AcquisitionCountryModuleAirbnb

Properties (7)

PropertyTypeEntityReferenceModule
(1) AcquiredCompanyLONGAcquisition
(2) AcquiringCompanyLONGAcquisition
(3) AnnouncementDateDATEAcquisition
(4) CloseDateDATEAcquisition
(5) CountryLONGAcquisitionCountryCountryModule
(6) DealValueUsdDOUBLEAcquisition
(7) NotesSTRINGAcquisition


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /acquisitioninsertAcquisition(acquisition)CountryModulePOSTAcquisition
(2) /acquisitionfindAllAcquisition()CountryModuleGETAcquisition
(3) /acquisition/{id}findAcquisitionById(id)CountryModuleGETAcquisition
(4) /acquisition/{id}updateAcquisitionById(acquisition)CountryModulePUTAcquisition
(5) /acquisition/country/{id}findAllAcquisitionOfCountry(id)CountryModuleGETCountry Acquisition
(6) /acquisition/{id}deleteAcquisitionById(id)CountryModuleDELETEAcquisition





Example:

final Acquisition acquisition = (Acquisition) invokeModule(COUNTRY_MODULE + "/acquisition/" + id, Acquisition.class);
if (acquisition != null) {
    final Country country1 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + acquisition.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return acquisition;


Overview

Summary

ContactDonateImprint