Overview

Summary

ContactDonateImprint


Appendix E-1: REGULATORY RESTRICTION (UI prompt)


RegulatoryRestrictionModuleNetflix

Properties (6)

PropertyTypeEntityReferenceModule
(1) CountryLONGRegulatoryRestrictionCountryCountryModule
(2) EndDateDATERegulatoryRestriction
(3) ReasonSTRINGRegulatoryRestriction
(4) RestrictionTypeSTRINGRegulatoryRestriction
(5) ServiceSupplyLONGRegulatoryRestrictionServiceSupplyModule
(6) StartDateDATERegulatoryRestriction


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /regulatoryrestriction/servicesupply/{id}findAllRegulatoryRestrictionOfServiceSupply(id)ModuleGETServiceSupply RegulatoryRestriction
(2) /regulatoryrestrictioninsertRegulatoryRestriction(regulatoryrestriction)ModulePOSTRegulatoryRestriction
(3) /regulatoryrestrictionfindAllRegulatoryRestriction()ModuleGETRegulatoryRestriction
(4) /regulatoryrestriction/{id}deleteRegulatoryRestrictionById(id)ModuleDELETERegulatoryRestriction
(5) /regulatoryrestriction/{id}updateRegulatoryRestrictionById(regulatoryrestriction)ModulePUTRegulatoryRestriction
(6) /regulatoryrestriction/country/{id}findAllRegulatoryRestrictionOfCountry(id)ModuleGETCountry RegulatoryRestriction
(7) /regulatoryrestriction/{id}findRegulatoryRestrictionById(id)ModuleGETRegulatoryRestriction





Example:

final RegulatoryRestriction regulatoryrestriction = (RegulatoryRestriction) invokeModule(MODULE + "/regulatoryrestriction/" + id, RegulatoryRestriction.class);
if (regulatoryrestriction != null) {
    final ServiceSupply servicesupply1 = (ServiceSupply) invokeModule(MODULE + "/servicesupply/" + regulatoryrestriction.getServiceSupply().getId(), ServiceSupply.class);
    if (servicesupply1 != null) {
        final Company company2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + servicesupply1.getCompany().getId(), Company.class);
        if (company2 != null) {
        }
    }
    final Country country3 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + regulatoryrestriction.getCountry().getId(), Country.class);
    if (country3 != null) {
    }
}
return regulatoryrestriction;


Overview

Summary

ContactDonateImprint