Overview

Summary

ContactDonateImprint


Appendix E-13: CONTENT GENRE (UI prompt)


ContentGenreContentTitleModuleNetflix

Properties (2)

PropertyTypeEntityReferenceModule
(1) ContentTitleLONGContentGenreContentTitleContentTitleModule
(2) GenreLONGContentGenreGenreContentTitleModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /contentgenre/{id}deleteContentGenreById(id)ContentTitleModuleDELETEContentGenre
(2) /contentgenre/contenttitle/{id}findAllContentGenreOfContentTitle(id)ContentTitleModuleGETContentTitle ContentGenre
(3) /contentgenre/{id}updateContentGenreById(contentgenre)ContentTitleModulePUTContentGenre
(4) /contentgenre/genre/{id}findAllContentGenreOfGenre(id)ContentTitleModuleGETGenre ContentGenre
(5) /contentgenrefindAllContentGenre()ContentTitleModuleGETContentGenre
(6) /contentgenreinsertContentGenre(contentgenre)ContentTitleModulePOSTContentGenre
(7) /contentgenre/{id}findContentGenreById(id)ContentTitleModuleGETContentGenre





Example:

final ContentGenre contentgenre = (ContentGenre) invokeModule(CONTENT_TITLE_MODULE + "/contentgenre/" + id, ContentGenre.class);
if (contentgenre != null) {
    final ContentTitle contenttitle1 = (ContentTitle) invokeModule(CONTENT_TITLE_MODULE + "/contenttitle/" + contentgenre.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) {
        }
    }
    final Genre genre5 = (Genre) invokeModule(CONTENT_TITLE_MODULE + "/genre/" + contentgenre.getGenre().getId(), Genre.class);
    if (genre5 != null) {
    }
}
return contentgenre;


Overview

Summary

ContactDonateImprint