Overview

Summary

ContactDonateImprint


9. PRODUCTION COMPANY MODULE (UI prompt)



Module Entities (6)

EntityAliasModuleGlobal Schema
(1) ContentRatingContentRatingProductionCompanyModuleAmazonPrimeVideo
(2) CountryCountryTitleModuleAmazonPrimeVideo
(3) ProductionCompanyProductionCompanyProductionCompanyModuleAmazonPrimeVideo
(4) RatingSystemRatingSystemProductionCompanyModuleAmazonPrimeVideo
(5) TitleTitleTitleModuleAmazonPrimeVideo
(6) TitleProductionCompanyTitleProductionCompanyTitleModuleAmazonPrimeVideo

Module Interfaces (19)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /contentrating/{id}findContentRatingById(id)ProductionCompanyModuleGETContentRating
(2) /productioncompanyfindAllProductionCompany()ProductionCompanyModuleGETProductionCompany
(3) /productioncompany/{id}deleteProductionCompanyById(id)ProductionCompanyModuleDELETEProductionCompany
(4) /ratingsystem/country/{id}findAllRatingSystemOfCountry(id)ProductionCompanyModuleGETCountry RatingSystem
(5) /ratingsysteminsertRatingSystem(ratingsystem)ProductionCompanyModulePOSTRatingSystem
(6) /productioncompany/{id}updateProductionCompanyById(productioncompany)ProductionCompanyModulePUTProductionCompany
(7) /contentratinginsertContentRating(contentrating)ProductionCompanyModulePOSTContentRating
(8) /contentrating/title/{id}findAllContentRatingOfTitle(id)ProductionCompanyModuleGETTitle ContentRating
(9) /contentrating/ratingsystem/{id}findAllContentRatingOfRatingSystem(id)ProductionCompanyModuleGETRatingSystem ContentRating
(10) /ratingsystem/{id}updateRatingSystemById(ratingsystem)ProductionCompanyModulePUTRatingSystem
(11) /contentrating/{id}deleteContentRatingById(id)ProductionCompanyModuleDELETEContentRating
(12) /productioncompanyinsertProductionCompany(productioncompany)ProductionCompanyModulePOSTProductionCompany
(13) /productioncompany/{id}findProductionCompanyById(id)ProductionCompanyModuleGETProductionCompany
(14) /productioncompany/country/{id}findAllProductionCompanyOfCountry(id)ProductionCompanyModuleGETCountry ProductionCompany
(15) /ratingsystem/{id}deleteRatingSystemById(id)ProductionCompanyModuleDELETERatingSystem
(16) /ratingsystemfindAllRatingSystem()ProductionCompanyModuleGETRatingSystem
(17) /contentrating/{id}updateContentRatingById(contentrating)ProductionCompanyModulePUTContentRating
(18) /contentratingfindAllContentRating()ProductionCompanyModuleGETContentRating
(19) /ratingsystem/{id}findRatingSystemById(id)ProductionCompanyModuleGETRatingSystem






9.1 CONTENT RATING


ContentRatingProductionCompanyModuleAmazonPrimeVideo

Properties (4)

PropertyTypeEntityReferenceModule
(1) RatingCodeSTRINGContentRating
(2) RatingDescriptionSTRINGContentRating
(3) RatingSystemLONGContentRatingRatingSystemProductionCompanyModule
(4) TitleLONGContentRatingTitleTitleModule





Example:

final ContentRating contentrating = (ContentRating) invokeModule(PRODUCTION_COMPANY_MODULE + "/contentrating/" + id, ContentRating.class);
if (contentrating != null) {
    final Title title1 = (Title) invokeModule(TITLE_MODULE + "/title/" + contentrating.getTitle().getId(), Title.class);
    if (title1 != null) {
        final Country productioncountry2 = (Country) invokeModule(TITLE_MODULE + "/country/" + title1.getProductionCountry().getId(), Country.class);
        if (productioncountry2 != null) {
        }
        final Language originallanguage3 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + title1.getOriginalLanguage().getId(), Language.class);
        if (originallanguage3 != null) {
        }
    }
    final RatingSystem ratingsystem4 = (RatingSystem) invokeModule(PRODUCTION_COMPANY_MODULE + "/ratingsystem/" + contentrating.getRatingSystem().getId(), RatingSystem.class);
    if (ratingsystem4 != null) {
        final Country country5 = (Country) invokeModule(TITLE_MODULE + "/country/" + ratingsystem4.getCountry().getId(), Country.class);
        if (country5 != null) {
        }
    }
}
return contentrating;


9.2 PRODUCTION COMPANY


ProductionCompanyProductionCompanyModuleAmazonPrimeVideo

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountryLONGProductionCompanyCountryTitleModule
(2) DescriptionSTRINGProductionCompany
(3) NameSTRINGProductionCompany
(4) WebsiteSTRINGProductionCompany





Example:

final ProductionCompany productioncompany = (ProductionCompany) invokeModule(PRODUCTION_COMPANY_MODULE + "/productioncompany/" + id, ProductionCompany.class);
if (productioncompany != null) {
    final Country country1 = (Country) invokeModule(TITLE_MODULE + "/country/" + productioncompany.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return productioncompany;


9.3 RATING SYSTEM


RatingSystemProductionCompanyModuleAmazonPrimeVideo

Properties (3)

PropertyTypeEntityReferenceModule
(1) CountryLONGRatingSystemCountryTitleModule
(2) DescriptionSTRINGRatingSystem
(3) NameSTRINGRatingSystem





Example:

final RatingSystem ratingsystem = (RatingSystem) invokeModule(PRODUCTION_COMPANY_MODULE + "/ratingsystem/" + id, RatingSystem.class);
if (ratingsystem != null) {
    final Country country1 = (Country) invokeModule(TITLE_MODULE + "/country/" + ratingsystem.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return ratingsystem;


Overview

Summary

ContactDonateImprint