Overview

Summary

ContactDonateImprint


Appendix E-34: FOUNDATION (UI prompt)


FoundationGiftVoucherModuleZeppelinFlight

Properties (4)

PropertyTypeEntityReferenceModule
(1) EstablishedOnDATEFoundation
(2) NameSTRINGFoundation
(3) OrganizationINTFoundationOrganizationOrganizationModule
(4) PurposeSTRINGFoundation


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /foundation/{id}deleteFoundationById(id)GiftVoucherModuleDELETEFoundation
(2) /foundationfindAllFoundation()GiftVoucherModuleGETFoundation
(3) /foundation/{id}updateFoundationById(foundation)GiftVoucherModulePUTFoundation
(4) /foundation/{id}findFoundationById(id)GiftVoucherModuleGETFoundation
(5) /foundation/organization/{id}findAllFoundationOfOrganization(id)GiftVoucherModuleGETOrganization Foundation
(6) /foundationinsertFoundation(foundation)GiftVoucherModulePOSTFoundation





Example:

final Foundation foundation = (Foundation) invokeModule(GIFT_VOUCHER_MODULE + "/foundation/" + id, Foundation.class);
if (foundation != null) {
    final Organization organization1 = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + foundation.getOrganization().getId(), Organization.class);
    if (organization1 != null) {
        final Location headquarterslocation2 = (Location) invokeModule(LOCATION_MODULE + "/location/" + organization1.getHeadquartersLocation().getId(), Location.class);
        if (headquarterslocation2 != null) {
            final Country country3 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
    }
}
return foundation;


Overview

Summary

ContactDonateImprint