Overview

Summary

ContactDonateImprint


Appendix E-16: LICENSE AGREEMENT (UI prompt)


LicenseAgreementCompanyModuleAmazonPrimeVideo

Properties (6)

PropertyTypeEntityReferenceModule
(1) IsExclusiveBOOLLicenseAgreement
(2) LicenseEndDATELicenseAgreement
(3) LicenseStartDATELicenseAgreement
(4) LicensorCompanyLONGLicenseAgreementCompanyCompanyModule
(5) TerritoryScopeSTRINGLicenseAgreement
(6) TitleLONGLicenseAgreementTitleTitleModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /licenseagreementfindAllLicenseAgreement()CompanyModuleGETLicenseAgreement
(2) /licenseagreement/{id}findLicenseAgreementById(id)CompanyModuleGETLicenseAgreement
(3) /licenseagreement/licensorcompany/{id}findAllLicenseAgreementOfLicensorCompany(id)CompanyModuleGETCompany LicenseAgreement
(4) /licenseagreement/{id}deleteLicenseAgreementById(id)CompanyModuleDELETELicenseAgreement
(5) /licenseagreementinsertLicenseAgreement(licenseagreement)CompanyModulePOSTLicenseAgreement
(6) /licenseagreement/title/{id}findAllLicenseAgreementOfTitle(id)CompanyModuleGETTitle LicenseAgreement
(7) /licenseagreement/{id}updateLicenseAgreementById(licenseagreement)CompanyModulePUTLicenseAgreement





Example:

final LicenseAgreement licenseagreement = (LicenseAgreement) invokeModule(COMPANY_MODULE + "/licenseagreement/" + id, LicenseAgreement.class);
if (licenseagreement != null) {
    final Company licensorcompany1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + licenseagreement.getLicensorCompany().getId(), Company.class);
    if (licensorcompany1 != null) {
    }
    final Title title2 = (Title) invokeModule(TITLE_MODULE + "/title/" + licenseagreement.getTitle().getId(), Title.class);
    if (title2 != null) {
        final Country productioncountry3 = (Country) invokeModule(TITLE_MODULE + "/country/" + title2.getProductionCountry().getId(), Country.class);
        if (productioncountry3 != null) {
        }
        final Language originallanguage4 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + title2.getOriginalLanguage().getId(), Language.class);
        if (originallanguage4 != null) {
        }
    }
}
return licenseagreement;


Overview

Summary

ContactDonateImprint