Overview

Summary

ContactDonateImprint


Appendix E-6: ORGANIZATION (UI prompt)


OrganizationOrganizationModuleZeppelinFlight

Properties (5)

PropertyTypeEntityReferenceModule
(1) FoundedOnDATEOrganization
(2) HeadquartersLocationINTOrganizationLocationLocationModule
(3) NameSTRINGOrganization
(4) OrganizationTypeSTRINGOrganization
(5) WebsiteSTRINGOrganization


Module Interfaces (14)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /engine/manufacturer/{id}findAllEngineOfManufacturer(id)EngineModuleGETOrganization Engine
(2) /foundation/organization/{id}findAllFoundationOfOrganization(id)GiftVoucherModuleGETOrganization Foundation
(3) /jobposting/organization/{id}findAllJobPostingOfOrganization(id)LocationModuleGETOrganization JobPosting
(4) /zeppelinclass/manufacturer/{id}findAllZeppelinClassOfManufacturer(id)OrganizationModuleGETOrganization ZeppelinClass
(5) /organization/{id}findOrganizationById(id)OrganizationModuleGETOrganization
(6) /lottery/beneficiaryorganization/{id}findAllLotteryOfBeneficiaryOrganization(id)OrganizationModuleGETOrganization Lottery
(7) /organization/{id}deleteOrganizationById(id)OrganizationModuleDELETEOrganization
(8) /donationcampaign/beneficiaryorganization/{id}findAllDonationCampaignOfBeneficiaryOrganization(id)OrganizationModuleGETOrganization DonationCampaign
(9) /organization/{id}updateOrganizationById(organization)OrganizationModulePUTOrganization
(10) /event/relatedorganization/{id}findAllEventOfRelatedOrganization(id)OrganizationModuleGETOrganization Event
(11) /organizationfindAllOrganization()OrganizationModuleGETOrganization
(12) /organization/headquarterslocation/{id}findAllOrganizationOfHeadquartersLocation(id)OrganizationModuleGETLocation Organization
(13) /organizationinsertOrganization(organization)OrganizationModulePOSTOrganization
(14) /zeppelin/operator/{id}findAllZeppelinOfOperator(id)ZeppelinModuleGETOrganization Zeppelin





Example:

final Organization organization = (Organization) invokeModule(ORGANIZATION_MODULE + "/organization/" + id, Organization.class);
if (organization != null) {
    final Location headquarterslocation1 = (Location) invokeModule(LOCATION_MODULE + "/location/" + organization.getHeadquartersLocation().getId(), Location.class);
    if (headquarterslocation1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + headquarterslocation1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
}
return organization;


Overview

Summary

ContactDonateImprint