Overview

Summary

ContactDonateImprint


Appendix E-24: CONTENT DEAL TITLE (UI prompt)


ContentDealTitlePersonModuleNetflix

Properties (3)

PropertyTypeEntityReferenceModule
(1) ContentDealLONGContentDealTitleContentDealCompanyModule
(2) ContentTitleLONGContentDealTitleContentTitleContentTitleModule
(3) NotesSTRINGContentDealTitle


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /contentdealtitle/contentdeal/{id}findAllContentDealTitleOfContentDeal(id)PersonModuleGETContentDeal ContentDealTitle
(2) /contentdealtitle/{id}updateContentDealTitleById(contentdealtitle)PersonModulePUTContentDealTitle
(3) /contentdealtitleinsertContentDealTitle(contentdealtitle)PersonModulePOSTContentDealTitle
(4) /contentdealtitle/{id}deleteContentDealTitleById(id)PersonModuleDELETEContentDealTitle
(5) /contentdealtitle/contenttitle/{id}findAllContentDealTitleOfContentTitle(id)PersonModuleGETContentTitle ContentDealTitle
(6) /contentdealtitle/{id}findContentDealTitleById(id)PersonModuleGETContentDealTitle
(7) /contentdealtitlefindAllContentDealTitle()PersonModuleGETContentDealTitle





Example:

final ContentDealTitle contentdealtitle = (ContentDealTitle) invokeModule(PERSON_MODULE + "/contentdealtitle/" + id, ContentDealTitle.class);
if (contentdealtitle != null) {
    final ContentDeal contentdeal1 = (ContentDeal) invokeModule(COMPANY_MODULE + "/contentdeal/" + contentdealtitle.getContentDeal().getId(), ContentDeal.class);
    if (contentdeal1 != null) {
        final ProductionCompany productioncompany2 = (ProductionCompany) invokeModule(COUNTRY_MODULE + "/productioncompany/" + contentdeal1.getProductionCompany().getId(), ProductionCompany.class);
        if (productioncompany2 != null) {
            final Country country3 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + productioncompany2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final Company company4 = (Company) invokeModule(COMPANY_MODULE + "/company/" + contentdeal1.getCompany().getId(), Company.class);
        if (company4 != null) {
        }
    }
    final ContentTitle contenttitle5 = (ContentTitle) invokeModule(CONTENT_TITLE_MODULE + "/contenttitle/" + contentdealtitle.getContentTitle().getId(), ContentTitle.class);
    if (contenttitle5 != null) {
        final ProductionCompany productioncompany6 = (ProductionCompany) invokeModule(COUNTRY_MODULE + "/productioncompany/" + contenttitle5.getProductionCompany().getId(), ProductionCompany.class);
        if (productioncompany6 != null) {
            final Country country7 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + productioncompany6.getCountry().getId(), Country.class);
            if (country7 != null) {
            }
        }
        final ContentType contenttype8 = (ContentType) invokeModule(CONTENT_TYPE_MODULE + "/contenttype/" + contenttitle5.getContentType().getId(), ContentType.class);
        if (contenttype8 != null) {
        }
    }
}
return contentdealtitle;


Overview

Summary

ContactDonateImprint