Overview

Summary

ContactDonateImprint


Appendix E-10: SANCTION LIST ENTRY (UI prompt)


SanctionListEntryCountryModulePayPal

Properties (6)

PropertyTypeEntityReferenceModule
(1) ActiveBOOLSanctionListEntry
(2) CountryLONGSanctionListEntryCountryCountryModule
(3) DateOfBirthDATESanctionListEntry
(4) ExternalReferenceSTRINGSanctionListEntry
(5) FullNameSTRINGSanctionListEntry
(6) ListNameSTRINGSanctionListEntry


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /sanctionlistentry/{id}findSanctionListEntryById(id)CountryModuleGETSanctionListEntry
(2) /sanctionlistentry/{id}deleteSanctionListEntryById(id)CountryModuleDELETESanctionListEntry
(3) /sanctionlistentryinsertSanctionListEntry(sanctionlistentry)CountryModulePOSTSanctionListEntry
(4) /sanctionlistentryfindAllSanctionListEntry()CountryModuleGETSanctionListEntry
(5) /sanctionlistentry/country/{id}findAllSanctionListEntryOfCountry(id)CountryModuleGETCountry SanctionListEntry
(6) /sanctionlistentry/{id}updateSanctionListEntryById(sanctionlistentry)CountryModulePUTSanctionListEntry
(7) /compliancecheck/sanctionlistentry/{id}findAllComplianceCheckOfSanctionListEntry(id)UserAccountModuleGETSanctionListEntry ComplianceCheck





Example:

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


Overview

Summary

ContactDonateImprint