Overview

Summary

ContactDonateImprint


Appendix E-26: TRAFFIC STATISTIC (UI prompt)


TrafficStatisticModuleNetflix

Properties (6)

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


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /trafficstatistic/country/{id}findAllTrafficStatisticOfCountry(id)ModuleGETCountry TrafficStatistic
(2) /trafficstatistic/{id}findTrafficStatisticById(id)ModuleGETTrafficStatistic
(3) /trafficstatistic/{id}deleteTrafficStatisticById(id)ModuleDELETETrafficStatistic
(4) /trafficstatisticinsertTrafficStatistic(trafficstatistic)ModulePOSTTrafficStatistic
(5) /trafficstatistic/{id}updateTrafficStatisticById(trafficstatistic)ModulePUTTrafficStatistic
(6) /trafficstatisticfindAllTrafficStatistic()ModuleGETTrafficStatistic
(7) /trafficstatistic/servicesupply/{id}findAllTrafficStatisticOfServiceSupply(id)ModuleGETServiceSupply TrafficStatistic





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