Overview

Summary

ContactDonateImprint


Appendix E-31: COUNTRY (UI prompt)


CountryCountryModulePayPal

Properties (4)

PropertyTypeEntityReferenceModule
(1) IsoCode2STRINGCountry
(2) IsoCode3STRINGCountry
(3) NameSTRINGCountry
(4) RegionLONGCountryRegionRegionModule


Module Interfaces (12)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /country/{id}updateCountryById(country)CountryModulePUTCountry
(2) /country/{id}deleteCountryById(id)CountryModuleDELETECountry
(3) /country/{id}findCountryById(id)CountryModuleGETCountry
(4) /useraddress/country/{id}findAllUserAddressOfCountry(id)CountryModuleGETCountry UserAddress
(5) /country/region/{id}findAllCountryOfRegion(id)CountryModuleGETRegion Country
(6) /bankaccount/country/{id}findAllBankAccountOfCountry(id)CountryModuleGETCountry BankAccount
(7) /countryfindAllCountry()CountryModuleGETCountry
(8) /countryinsertCountry(country)CountryModulePOSTCountry
(9) /sanctionlistentry/country/{id}findAllSanctionListEntryOfCountry(id)CountryModuleGETCountry SanctionListEntry
(10) /paymentcard/country/{id}findAllPaymentCardOfCountry(id)FundingSourceModuleGETCountry PaymentCard
(11) /merchantaddress/country/{id}findAllMerchantAddressOfCountry(id)MerchantModuleGETCountry MerchantAddress
(12) /regulatorylicense/country/{id}findAllRegulatoryLicenseOfCountry(id)RegionModuleGETCountry RegulatoryLicense





Example:

final Country country = (Country) invokeModule(COUNTRY_MODULE + "/country/" + id, Country.class);
if (country != null) {
    final Region region1 = (Region) invokeModule(REGION_MODULE + "/region/" + country.getRegion().getId(), Region.class);
    if (region1 != null) {
    }
}
return country;


Overview

Summary

ContactDonateImprint