Overview

Summary

ContactDonateImprint


Appendix E-10: CONTENT AWARD (UI prompt)


ContentAwardContentTitleModuleNetflix

Properties (5)

PropertyTypeEntityReferenceModule
(1) AwardNameSTRINGContentAward
(2) CategorySTRINGContentAward
(3) ContentTitleLONGContentAwardContentTitleContentTitleModule
(4) ResultSTRINGContentAward
(5) YearLONGContentAward


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /contentaward/{id}findContentAwardById(id)ContentTitleModuleGETContentAward
(2) /contentaward/{id}deleteContentAwardById(id)ContentTitleModuleDELETEContentAward
(3) /contentaward/contenttitle/{id}findAllContentAwardOfContentTitle(id)ContentTitleModuleGETContentTitle ContentAward
(4) /contentaward/{id}updateContentAwardById(contentaward)ContentTitleModulePUTContentAward
(5) /contentawardinsertContentAward(contentaward)ContentTitleModulePOSTContentAward
(6) /contentawardfindAllContentAward()ContentTitleModuleGETContentAward





Example:

final ContentAward contentaward = (ContentAward) invokeModule(CONTENT_TITLE_MODULE + "/contentaward/" + id, ContentAward.class);
if (contentaward != null) {
    final ContentTitle contenttitle1 = (ContentTitle) invokeModule(CONTENT_TITLE_MODULE + "/contenttitle/" + contentaward.getContentTitle().getId(), ContentTitle.class);
    if (contenttitle1 != null) {
        final ProductionCompany productioncompany2 = (ProductionCompany) invokeModule(COUNTRY_MODULE + "/productioncompany/" + contenttitle1.getProductionCompany().getId(), ProductionCompany.class);
        if (productioncompany2 != null) {
            final Country country3 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + productioncompany2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final ContentType contenttype4 = (ContentType) invokeModule(CONTENT_TYPE_MODULE + "/contenttype/" + contenttitle1.getContentType().getId(), ContentType.class);
        if (contenttype4 != null) {
        }
    }
}
return contentaward;


Overview

Summary

ContactDonateImprint