Overview

Summary

ContactDonateImprint


10. MODULE (UI prompt)



Module Entities (14)

EntityAliasModuleGlobal Schema
(1) CompanyCompanyCompanyModuleNetflix
(2) ContentAvailabilityContentAvailabilityContentTitleModuleNetflix
(3) ContentDistributionContentDistributionDeviceModuleNetflix
(4) CountryCountryCountryModuleNetflix
(5) DeviceIntegrationDeviceIntegrationDeviceModuleNetflix
(6) MarketPresenceMarketPresenceModuleNetflix
(7) PeeringAgreementPeeringAgreementLanguageModuleNetflix
(8) RegulatoryRestrictionRegulatoryRestrictionModuleNetflix
(9) ServiceFeatureServiceFeatureSeasonModuleNetflix
(10) ServiceLanguageServiceLanguageLanguageModuleNetflix
(11) ServiceOutageServiceOutageModuleNetflix
(12) ServiceSupplyServiceSupplyModuleNetflix
(13) SubscriptionPlanSubscriptionPlanSubscriptionPlanModuleNetflix
(14) TrafficStatisticTrafficStatisticModuleNetflix

Module Interfaces (33)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /trafficstatistic/{id}updateTrafficStatisticById(trafficstatistic)ModulePUTTrafficStatistic
(2) /regulatoryrestriction/{id}deleteRegulatoryRestrictionById(id)ModuleDELETERegulatoryRestriction
(3) /marketpresenceinsertMarketPresence(marketpresence)ModulePOSTMarketPresence
(4) /serviceoutageinsertServiceOutage(serviceoutage)ModulePOSTServiceOutage
(5) /marketpresence/servicesupply/{id}findAllMarketPresenceOfServiceSupply(id)ModuleGETServiceSupply MarketPresence
(6) /regulatoryrestriction/{id}updateRegulatoryRestrictionById(regulatoryrestriction)ModulePUTRegulatoryRestriction
(7) /serviceoutagefindAllServiceOutage()ModuleGETServiceOutage
(8) /marketpresencefindAllMarketPresence()ModuleGETMarketPresence
(9) /trafficstatistic/servicesupply/{id}findAllTrafficStatisticOfServiceSupply(id)ModuleGETServiceSupply TrafficStatistic
(10) /regulatoryrestrictioninsertRegulatoryRestriction(regulatoryrestriction)ModulePOSTRegulatoryRestriction
(11) /serviceoutage/{id}deleteServiceOutageById(id)ModuleDELETEServiceOutage
(12) /marketpresence/country/{id}findAllMarketPresenceOfCountry(id)ModuleGETCountry MarketPresence
(13) /trafficstatistic/{id}findTrafficStatisticById(id)ModuleGETTrafficStatistic
(14) /servicesupplyinsertServiceSupply(servicesupply)ModulePOSTServiceSupply
(15) /regulatoryrestriction/servicesupply/{id}findAllRegulatoryRestrictionOfServiceSupply(id)ModuleGETServiceSupply RegulatoryRestriction
(16) /trafficstatistic/{id}deleteTrafficStatisticById(id)ModuleDELETETrafficStatistic
(17) /serviceoutage/servicesupply/{id}findAllServiceOutageOfServiceSupply(id)ModuleGETServiceSupply ServiceOutage
(18) /trafficstatisticfindAllTrafficStatistic()ModuleGETTrafficStatistic
(19) /regulatoryrestriction/country/{id}findAllRegulatoryRestrictionOfCountry(id)ModuleGETCountry RegulatoryRestriction
(20) /regulatoryrestriction/{id}findRegulatoryRestrictionById(id)ModuleGETRegulatoryRestriction
(21) /regulatoryrestrictionfindAllRegulatoryRestriction()ModuleGETRegulatoryRestriction
(22) /servicesupply/{id}findServiceSupplyById(id)ModuleGETServiceSupply
(23) /trafficstatisticinsertTrafficStatistic(trafficstatistic)ModulePOSTTrafficStatistic
(24) /marketpresence/{id}updateMarketPresenceById(marketpresence)ModulePUTMarketPresence
(25) /servicesupply/{id}updateServiceSupplyById(servicesupply)ModulePUTServiceSupply
(26) /serviceoutage/{id}findServiceOutageById(id)ModuleGETServiceOutage
(27) /servicesupplyfindAllServiceSupply()ModuleGETServiceSupply
(28) /trafficstatistic/country/{id}findAllTrafficStatisticOfCountry(id)ModuleGETCountry TrafficStatistic
(29) /marketpresence/{id}deleteMarketPresenceById(id)ModuleDELETEMarketPresence
(30) /serviceoutage/{id}updateServiceOutageById(serviceoutage)ModulePUTServiceOutage
(31) /servicesupply/company/{id}findAllServiceSupplyOfCompany(id)ModuleGETCompany ServiceSupply
(32) /marketpresence/{id}findMarketPresenceById(id)ModuleGETMarketPresence
(33) /servicesupply/{id}deleteServiceSupplyById(id)ModuleDELETEServiceSupply






10.1 MARKET PRESENCE


MarketPresenceModuleNetflix

Properties (6)

PropertyTypeEntityReferenceModule
(1) CountryLONGMarketPresenceCountryCountryModule
(2) ExitDateDATEMarketPresence
(3) LaunchDateDATEMarketPresence
(4) NotesSTRINGMarketPresence
(5) ServiceSupplyLONGMarketPresenceServiceSupplyModule
(6) StatusSTRINGMarketPresence





Example:

final MarketPresence marketpresence = (MarketPresence) invokeModule(MODULE + "/marketpresence/" + id, MarketPresence.class);
if (marketpresence != null) {
    final ServiceSupply servicesupply1 = (ServiceSupply) invokeModule(MODULE + "/servicesupply/" + marketpresence.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/" + marketpresence.getCountry().getId(), Country.class);
    if (country3 != null) {
    }
}
return marketpresence;


10.2 REGULATORY RESTRICTION


RegulatoryRestrictionModuleNetflix

Properties (6)

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





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;


10.3 SERVICE OUTAGE


ServiceOutageModuleNetflix

Properties (5)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGServiceOutage
(2) EndDateDATEServiceOutage
(3) ImpactDescriptionSTRINGServiceOutage
(4) ServiceSupplyLONGServiceOutageServiceSupplyModule
(5) StartDateDATEServiceOutage





Example:

final ServiceOutage serviceoutage = (ServiceOutage) invokeModule(MODULE + "/serviceoutage/" + id, ServiceOutage.class);
if (serviceoutage != null) {
    final ServiceSupply servicesupply1 = (ServiceSupply) invokeModule(MODULE + "/servicesupply/" + serviceoutage.getServiceSupply().getId(), ServiceSupply.class);
    if (servicesupply1 != null) {
        final Company company2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + servicesupply1.getCompany().getId(), Company.class);
        if (company2 != null) {
        }
    }
}
return serviceoutage;


10.4 SERVICE SUPPLY


ServiceSupplyModuleNetflix

Properties (7)

PropertyTypeEntityReferenceModule
(1) CompanyLONGServiceSupplyCompanyCompanyModule
(2) DescriptionSTRINGServiceSupply
(3) LaunchDateDATEServiceSupply
(4) NameSTRINGServiceSupply
(5) StatusSTRINGServiceSupply
(6) TypeSTRINGServiceSupply
(7) UrlSTRINGServiceSupply





Example:

final ServiceSupply servicesupply = (ServiceSupply) invokeModule(MODULE + "/servicesupply/" + id, ServiceSupply.class);
if (servicesupply != null) {
    final Company company1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + servicesupply.getCompany().getId(), Company.class);
    if (company1 != null) {
    }
}
return servicesupply;


10.5 TRAFFIC STATISTIC


TrafficStatisticModuleNetflix

Properties (6)

PropertyTypeEntityReferenceModule
(1) CountryLONGTrafficStatisticCountryCountryModule
(2) NotesSTRINGTrafficStatistic
(3) RankGlobalLONGTrafficStatistic
(4) ServiceSupplyLONGTrafficStatisticServiceSupplyModule
(5) TrafficSharePercentSTRINGTrafficStatistic
(6) YearLONGTrafficStatistic





Example:

final TrafficStatistic trafficstatistic = (TrafficStatistic) invokeModule(MODULE + "/trafficstatistic/" + id, TrafficStatistic.class);
if (trafficstatistic != null) {
    final ServiceSupply servicesupply1 = (ServiceSupply) invokeModule(MODULE + "/servicesupply/" + trafficstatistic.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/" + trafficstatistic.getCountry().getId(), Country.class);
    if (country3 != null) {
    }
}
return trafficstatistic;


Overview

Summary

ContactDonateImprint