Overview

Summary

ContactDonateImprint


Appendix E-29: TITLE AWARD (UI prompt)


TitleAwardAwardEventEditionModuleImdb

Properties (5)

PropertyTypeEntityReferenceModule
(1) AwardCategoryLONGTitleAwardAwardCategoryAwardEventModule
(2) AwardEventEditionLONGTitleAwardAwardEventEditionAwardEventEditionModule
(3) IsWinnerBOOLTitleAward
(4) NotesSTRINGTitleAward
(5) TitleLONGTitleAwardTitleTitleModule


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /titleaward/{id}updateTitleAwardById(titleaward)AwardEventEditionModulePUTTitleAward
(2) /titleaward/awardcategory/{id}findAllTitleAwardOfAwardCategory(id)AwardEventEditionModuleGETAwardCategory TitleAward
(3) /titleaward/{id}deleteTitleAwardById(id)AwardEventEditionModuleDELETETitleAward
(4) /titleaward/{id}findTitleAwardById(id)AwardEventEditionModuleGETTitleAward
(5) /titleaward/awardeventedition/{id}findAllTitleAwardOfAwardEventEdition(id)AwardEventEditionModuleGETAwardEventEdition TitleAward
(6) /titleaward/title/{id}findAllTitleAwardOfTitle(id)AwardEventEditionModuleGETTitle TitleAward
(7) /titleawardfindAllTitleAward()AwardEventEditionModuleGETTitleAward
(8) /titleawardinsertTitleAward(titleaward)AwardEventEditionModulePOSTTitleAward





Example:

final TitleAward titleaward = (TitleAward) invokeModule(AWARD_EVENT_EDITION_MODULE + "/titleaward/" + id, TitleAward.class);
if (titleaward != null) {
    final AwardCategory awardcategory1 = (AwardCategory) invokeModule(AWARD_EVENT_MODULE + "/awardcategory/" + titleaward.getAwardCategory().getId(), AwardCategory.class);
    if (awardcategory1 != null) {
        final AwardEvent awardevent2 = (AwardEvent) invokeModule(AWARD_EVENT_MODULE + "/awardevent/" + awardcategory1.getAwardEvent().getId(), AwardEvent.class);
        if (awardevent2 != null) {
            final Country country3 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + awardevent2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
    }
    final Title title4 = (Title) invokeModule(TITLE_MODULE + "/title/" + titleaward.getTitle().getId(), Title.class);
    if (title4 != null) {
        final TitleType titletype5 = (TitleType) invokeModule(EDITORIAL_ARTICLE_MODULE + "/titletype/" + title4.getTitleType().getId(), TitleType.class);
        if (titletype5 != null) {
        }
    }
    final AwardEventEdition awardeventedition6 = (AwardEventEdition) invokeModule(AWARD_EVENT_EDITION_MODULE + "/awardeventedition/" + titleaward.getAwardEventEdition().getId(), AwardEventEdition.class);
    if (awardeventedition6 != null) {
        final AwardEvent awardevent7 = (AwardEvent) invokeModule(AWARD_EVENT_MODULE + "/awardevent/" + awardeventedition6.getAwardEvent().getId(), AwardEvent.class);
        if (awardevent7 != null) {
            final Country country8 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + awardevent7.getCountry().getId(), Country.class);
            if (country8 != null) {
            }
        }
    }
}
return titleaward;


Overview

Summary

ContactDonateImprint