Overview

Summary

ContactDonateImprint


Appendix E-18: GOVERNMENT MANDATE (UI prompt)


GovernmentMandateGovernmentMandateModuleAladdin

Properties (10)

PropertyTypeEntityReferenceModule
(1) AladdinSystemLONGGovernmentMandateAladdinSystemAladdinSystemModule
(2) ClientOrganizationLONGGovernmentMandateOrganizationOrganizationModule
(3) CrisisLONGGovernmentMandateCrisisGovernmentMandateModule
(4) CurrencySTRINGGovernmentMandate
(5) DescriptionSTRINGGovernmentMandate
(6) EndDateDATEGovernmentMandate
(7) MandateValueSTRINGGovernmentMandate
(8) NameSTRINGGovernmentMandate
(9) ServiceProviderOrganizationLONGGovernmentMandateOrganizationOrganizationModule
(10) StartDateDATEGovernmentMandate


Module Interfaces (10)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /mandateinstrument/governmentmandate/{id}findAllMandateInstrumentOfGovernmentMandate(id)FinancialProductModuleGETGovernmentMandate MandateInstrument
(2) /governmentmandate/serviceproviderorganization/{id}findAllGovernmentMandateOfServiceProviderOrganization(id)GovernmentMandateModuleGETOrganization GovernmentMandate
(3) /governmentmandate/clientorganization/{id}findAllGovernmentMandateOfClientOrganization(id)GovernmentMandateModuleGETOrganization GovernmentMandate
(4) /governmentmandatefindAllGovernmentMandate()GovernmentMandateModuleGETGovernmentMandate
(5) /governmentmandate/{id}deleteGovernmentMandateById(id)GovernmentMandateModuleDELETEGovernmentMandate
(6) /governmentmandate/crisis/{id}findAllGovernmentMandateOfCrisis(id)GovernmentMandateModuleGETCrisis GovernmentMandate
(7) /governmentmandate/{id}findGovernmentMandateById(id)GovernmentMandateModuleGETGovernmentMandate
(8) /governmentmandate/aladdinsystem/{id}findAllGovernmentMandateOfAladdinSystem(id)GovernmentMandateModuleGETAladdinSystem GovernmentMandate
(9) /governmentmandateinsertGovernmentMandate(governmentmandate)GovernmentMandateModulePOSTGovernmentMandate
(10) /governmentmandate/{id}updateGovernmentMandateById(governmentmandate)GovernmentMandateModulePUTGovernmentMandate





Example:

final GovernmentMandate governmentmandate = (GovernmentMandate) invokeModule(GOVERNMENT_MANDATE_MODULE + "/governmentmandate/" + id, GovernmentMandate.class);
if (governmentmandate != null) {
    final AladdinSystem aladdinsystem1 = (AladdinSystem) invokeModule(ALADDIN_SYSTEM_MODULE + "/aladdinsystem/" + governmentmandate.getAladdinSystem().getId(), AladdinSystem.class);
    if (aladdinsystem1 != null) {
    }
    final Organization serviceproviderorganization2 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + governmentmandate.getServiceProviderOrganization().getId(), Organization.class);
    if (serviceproviderorganization2 != null) {
    }
    final Organization clientorganization3 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + governmentmandate.getClientOrganization().getId(), Organization.class);
    if (clientorganization3 != null) {
    }
    final Crisis crisis4 = (Crisis) invokeModule(GOVERNMENT_MANDATE_MODULE + "/crisis/" + governmentmandate.getCrisis().getId(), Crisis.class);
    if (crisis4 != null) {
    }
}
return governmentmandate;


Overview

Summary

ContactDonateImprint