Overview

Summary

ContactDonateImprint


Appendix E-21: CONTENT TITLE (UI prompt)


ContentTitleContentTitleModuleNetflix

Properties (9)

PropertyTypeEntityReferenceModule
(1) ContentTypeLONGContentTitleContentTypeContentTypeModule
(2) ImdbIdSTRINGContentTitle
(3) IsNetflixOriginalBOOLContentTitle
(4) LocalizedTitleSTRINGContentTitle
(5) OriginalTitleSTRINGContentTitle
(6) ProductionCompanyLONGContentTitleProductionCompanyCountryModule
(7) ReleaseDateDATEContentTitle
(8) RuntimeMinutesLONGContentTitle
(9) SynopsisSTRINGContentTitle


Module Interfaces (17)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /contentgenre/contenttitle/{id}findAllContentGenreOfContentTitle(id)ContentTitleModuleGETContentTitle ContentGenre
(2) /contentavailability/contenttitle/{id}findAllContentAvailabilityOfContentTitle(id)ContentTitleModuleGETContentTitle ContentAvailability
(3) /contenttitle/{id}findContentTitleById(id)ContentTitleModuleGETContentTitle
(4) /contenttitle/{id}deleteContentTitleById(id)ContentTitleModuleDELETEContentTitle
(5) /contenttitleinsertContentTitle(contenttitle)ContentTitleModulePOSTContentTitle
(6) /contentaward/contenttitle/{id}findAllContentAwardOfContentTitle(id)ContentTitleModuleGETContentTitle ContentAward
(7) /contenttitlefindAllContentTitle()ContentTitleModuleGETContentTitle
(8) /contenttitle/contenttype/{id}findAllContentTitleOfContentType(id)ContentTitleModuleGETContentType ContentTitle
(9) /contenttitle/{id}updateContentTitleById(contenttitle)ContentTitleModulePUTContentTitle
(10) /contenttitle/productioncompany/{id}findAllContentTitleOfProductionCompany(id)ContentTitleModuleGETProductionCompany ContentTitle
(11) /contentdistribution/contenttitle/{id}findAllContentDistributionOfContentTitle(id)DeviceModuleGETContentTitle ContentDistribution
(12) /playbacksession/contenttitle/{id}findAllPlaybackSessionOfContentTitle(id)DeviceModuleGETContentTitle PlaybackSession
(13) /contentdealtitle/contenttitle/{id}findAllContentDealTitleOfContentTitle(id)PersonModuleGETContentTitle ContentDealTitle
(14) /contentpersoncredit/contenttitle/{id}findAllContentPersonCreditOfContentTitle(id)PersonModuleGETContentTitle ContentPersonCredit
(15) /episode/contenttitle/{id}findAllEpisodeOfContentTitle(id)SeasonModuleGETContentTitle Episode
(16) /season/contenttitle/{id}findAllSeasonOfContentTitle(id)SeasonModuleGETContentTitle Season
(17) /recommendationevent/contenttitle/{id}findAllRecommendationEventOfContentTitle(id)UserProfileModuleGETContentTitle RecommendationEvent





Example:

final ContentTitle contenttitle = (ContentTitle) invokeModule(CONTENT_TITLE_MODULE + "/contenttitle/" + id, ContentTitle.class);
if (contenttitle != null) {
    final ProductionCompany productioncompany1 = (ProductionCompany) invokeModule(COUNTRY_MODULE + "/productioncompany/" + contenttitle.getProductionCompany().getId(), ProductionCompany.class);
    if (productioncompany1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + productioncompany1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
    }
    final ContentType contenttype3 = (ContentType) invokeModule(CONTENT_TYPE_MODULE + "/contenttype/" + contenttitle.getContentType().getId(), ContentType.class);
    if (contenttype3 != null) {
    }
}
return contenttitle;


Overview

Summary

ContactDonateImprint