Overview

Summary

ContactDonateImprint


Appendix E-28: CONTENT PERSON CREDIT (UI prompt)


ContentPersonCreditPersonModuleNetflix

Properties (4)

PropertyTypeEntityReferenceModule
(1) CharacterNameSTRINGContentPersonCredit
(2) ContentTitleLONGContentPersonCreditContentTitleContentTitleModule
(3) CreditTypeSTRINGContentPersonCredit
(4) PersonLONGContentPersonCreditPersonPersonModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /contentpersoncredit/{id}deleteContentPersonCreditById(id)PersonModuleDELETEContentPersonCredit
(2) /contentpersoncredit/{id}updateContentPersonCreditById(contentpersoncredit)PersonModulePUTContentPersonCredit
(3) /contentpersoncreditinsertContentPersonCredit(contentpersoncredit)PersonModulePOSTContentPersonCredit
(4) /contentpersoncredit/contenttitle/{id}findAllContentPersonCreditOfContentTitle(id)PersonModuleGETContentTitle ContentPersonCredit
(5) /contentpersoncredit/person/{id}findAllContentPersonCreditOfPerson(id)PersonModuleGETPerson ContentPersonCredit
(6) /contentpersoncreditfindAllContentPersonCredit()PersonModuleGETContentPersonCredit
(7) /contentpersoncredit/{id}findContentPersonCreditById(id)PersonModuleGETContentPersonCredit





Example:

final ContentPersonCredit contentpersoncredit = (ContentPersonCredit) invokeModule(PERSON_MODULE + "/contentpersoncredit/" + id, ContentPersonCredit.class);
if (contentpersoncredit != null) {
    final ContentTitle contenttitle1 = (ContentTitle) invokeModule(CONTENT_TITLE_MODULE + "/contenttitle/" + contentpersoncredit.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 Person person5 = (Person) invokeModule(PERSON_MODULE + "/person/" + contentpersoncredit.getPerson().getId(), Person.class);
    if (person5 != null) {
    }
}
return contentpersoncredit;


Overview

Summary

ContactDonateImprint