Overview

Summary

ContactDonateImprint


Appendix E-6: AWARD EVENT (UI prompt)


AwardEventAwardEventModuleImdb

Properties (5)

PropertyTypeEntityReferenceModule
(1) CountryLONGAwardEventCountryCountryModule
(2) DescriptionSTRINGAwardEvent
(3) FirstYearINTAwardEvent
(4) NameSTRINGAwardEvent
(5) WebsiteUrlSTRINGAwardEvent


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /awardeventedition/awardevent/{id}findAllAwardEventEditionOfAwardEvent(id)AwardEventEditionModuleGETAwardEvent AwardEventEdition
(2) /awardcategory/awardevent/{id}findAllAwardCategoryOfAwardEvent(id)AwardEventModuleGETAwardEvent AwardCategory
(3) /awardeventfindAllAwardEvent()AwardEventModuleGETAwardEvent
(4) /awardeventinsertAwardEvent(awardevent)AwardEventModulePOSTAwardEvent
(5) /awardevent/{id}deleteAwardEventById(id)AwardEventModuleDELETEAwardEvent
(6) /awardevent/{id}findAwardEventById(id)AwardEventModuleGETAwardEvent
(7) /awardevent/country/{id}findAllAwardEventOfCountry(id)AwardEventModuleGETCountry AwardEvent
(8) /awardevent/{id}updateAwardEventById(awardevent)AwardEventModulePUTAwardEvent





Example:

final AwardEvent awardevent = (AwardEvent) invokeModule(AWARD_EVENT_MODULE + "/awardevent/" + id, AwardEvent.class);
if (awardevent != null) {
    final Country country1 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + awardevent.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return awardevent;


Overview

Summary

ContactDonateImprint