Overview

Summary

ContactDonateImprint


5. GOVERNMENT MANDATE MODULE (UI prompt)



Module Entities (5)

EntityAliasModuleGlobal Schema
(1) AladdinSystemAladdinSystemAladdinSystemModuleAladdin
(2) CrisisCrisisGovernmentMandateModuleAladdin
(3) GovernmentMandateGovernmentMandateGovernmentMandateModuleAladdin
(4) MandateInstrumentMandateInstrumentFinancialProductModuleAladdin
(5) OrganizationOrganizationOrganizationModuleAladdin

Module Interfaces (14)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /governmentmandate/{id}deleteGovernmentMandateById(id)GovernmentMandateModuleDELETEGovernmentMandate
(2) /governmentmandateinsertGovernmentMandate(governmentmandate)GovernmentMandateModulePOSTGovernmentMandate
(3) /governmentmandate/{id}updateGovernmentMandateById(governmentmandate)GovernmentMandateModulePUTGovernmentMandate
(4) /crisisfindAllCrisis()GovernmentMandateModuleGETCrisis
(5) /governmentmandate/clientorganization/{id}findAllGovernmentMandateOfClientOrganization(id)GovernmentMandateModuleGETOrganization GovernmentMandate
(6) /crisisinsertCrisis(crisis)GovernmentMandateModulePOSTCrisis
(7) /crisis/{id}updateCrisisById(crisis)GovernmentMandateModulePUTCrisis
(8) /governmentmandate/crisis/{id}findAllGovernmentMandateOfCrisis(id)GovernmentMandateModuleGETCrisis GovernmentMandate
(9) /governmentmandate/{id}findGovernmentMandateById(id)GovernmentMandateModuleGETGovernmentMandate
(10) /governmentmandate/aladdinsystem/{id}findAllGovernmentMandateOfAladdinSystem(id)GovernmentMandateModuleGETAladdinSystem GovernmentMandate
(11) /crisis/{id}deleteCrisisById(id)GovernmentMandateModuleDELETECrisis
(12) /crisis/{id}findCrisisById(id)GovernmentMandateModuleGETCrisis
(13) /governmentmandate/serviceproviderorganization/{id}findAllGovernmentMandateOfServiceProviderOrganization(id)GovernmentMandateModuleGETOrganization GovernmentMandate
(14) /governmentmandatefindAllGovernmentMandate()GovernmentMandateModuleGETGovernmentMandate






5.1 CRISIS


CrisisGovernmentMandateModuleAladdin

Properties (4)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGCrisis
(2) EndDateDATECrisis
(3) NameSTRINGCrisis
(4) StartDateDATECrisis





Example:

final Crisis crisis = (Crisis) invokeModule(GOVERNMENT_MANDATE_MODULE + "/crisis/" + id, Crisis.class);
if (crisis != null) {
}
return crisis;


5.2 GOVERNMENT MANDATE


GovernmentMandateGovernmentMandateModuleAladdin

Properties (10)

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





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