Overview

Summary

ContactDonateImprint


Appendix E-41: COUNTRY REGION (UI prompt)


CountryRegionMarketRegionModuleSpotify

Properties (2)

PropertyTypeEntityReferenceModule
(1) CountryLONGCountryRegionCountryCountryModule
(2) MarketRegionLONGCountryRegionMarketRegionMarketRegionModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /countryregionfindAllCountryRegion()MarketRegionModuleGETCountryRegion
(2) /countryregion/marketregion/{id}findAllCountryRegionOfMarketRegion(id)MarketRegionModuleGETMarketRegion CountryRegion
(3) /countryregion/country/{id}findAllCountryRegionOfCountry(id)MarketRegionModuleGETCountry CountryRegion
(4) /countryregioninsertCountryRegion(countryregion)MarketRegionModulePOSTCountryRegion
(5) /countryregion/{id}updateCountryRegionById(countryregion)MarketRegionModulePUTCountryRegion
(6) /countryregion/{id}findCountryRegionById(id)MarketRegionModuleGETCountryRegion
(7) /countryregion/{id}deleteCountryRegionById(id)MarketRegionModuleDELETECountryRegion





Example:

final CountryRegion countryregion = (CountryRegion) invokeModule(MARKET_REGION_MODULE + "/countryregion/" + id, CountryRegion.class);
if (countryregion != null) {
    final MarketRegion marketregion1 = (MarketRegion) invokeModule(MARKET_REGION_MODULE + "/marketregion/" + countryregion.getMarketRegion().getId(), MarketRegion.class);
    if (marketregion1 != null) {
    }
    final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + countryregion.getCountry().getId(), Country.class);
    if (country2 != null) {
    }
}
return countryregion;


Overview

Summary

ContactDonateImprint