Overview

Summary

ContactDonateImprint


Appendix E-26: TREND TOPIC (UI prompt)


TrendTopicTrendLocationModuleTwitterX

Properties (6)

PropertyTypeEntityReferenceModule
(1) AsOfSTRINGTrendTopic
(2) NameSTRINGTrendTopic
(3) PromotedContentSTRINGTrendTopic
(4) QuerySTRINGTrendTopic
(5) TrendLocationLONGTrendTopicTrendLocationTrendLocationModule
(6) UrlSTRINGTrendTopic


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /trendtopic/{id}findTrendTopicById(id)TrendLocationModuleGETTrendTopic
(2) /trendtopic/{id}updateTrendTopicById(trendtopic)TrendLocationModulePUTTrendTopic
(3) /trendtopicfindAllTrendTopic()TrendLocationModuleGETTrendTopic
(4) /trendtopic/{id}deleteTrendTopicById(id)TrendLocationModuleDELETETrendTopic
(5) /trendtopic/trendlocation/{id}findAllTrendTopicOfTrendLocation(id)TrendLocationModuleGETTrendLocation TrendTopic
(6) /trendtopicinsertTrendTopic(trendtopic)TrendLocationModulePOSTTrendTopic





Example:

final TrendTopic trendtopic = (TrendTopic) invokeModule(TREND_LOCATION_MODULE + "/trendtopic/" + id, TrendTopic.class);
if (trendtopic != null) {
    final TrendLocation trendlocation1 = (TrendLocation) invokeModule(TREND_LOCATION_MODULE + "/trendlocation/" + trendtopic.getTrendLocation().getId(), TrendLocation.class);
    if (trendlocation1 != null) {
    }
}
return trendtopic;


Overview

Summary

ContactDonateImprint