Overview

Summary

ContactDonateImprint


Appendix E-19: TITLE COUNTRY (UI prompt)


TitleCountryCountryModuleImdb

Properties (2)

PropertyTypeEntityReferenceModule
(1) CountryLONGTitleCountryCountryCountryModule
(2) TitleLONGTitleCountryTitleTitleModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /titlecountry/title/{id}findAllTitleCountryOfTitle(id)CountryModuleGETTitle TitleCountry
(2) /titlecountry/country/{id}findAllTitleCountryOfCountry(id)CountryModuleGETCountry TitleCountry
(3) /titlecountryfindAllTitleCountry()CountryModuleGETTitleCountry
(4) /titlecountry/{id}updateTitleCountryById(titlecountry)CountryModulePUTTitleCountry
(5) /titlecountry/{id}deleteTitleCountryById(id)CountryModuleDELETETitleCountry
(6) /titlecountryinsertTitleCountry(titlecountry)CountryModulePOSTTitleCountry
(7) /titlecountry/{id}findTitleCountryById(id)CountryModuleGETTitleCountry





Example:

final TitleCountry titlecountry = (TitleCountry) invokeModule(COUNTRY_MODULE + "/titlecountry/" + id, TitleCountry.class);
if (titlecountry != null) {
    final Title title1 = (Title) invokeModule(TITLE_MODULE + "/title/" + titlecountry.getTitle().getId(), Title.class);
    if (title1 != null) {
        final TitleType titletype2 = (TitleType) invokeModule(EDITORIAL_ARTICLE_MODULE + "/titletype/" + title1.getTitleType().getId(), TitleType.class);
        if (titletype2 != null) {
        }
    }
    final Country country3 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + titlecountry.getCountry().getId(), Country.class);
    if (country3 != null) {
    }
}
return titlecountry;


Overview

Summary

ContactDonateImprint