Overview

Summary

ContactDonateImprint


Appendix E-16: TWEET HASHTAG (UI prompt)


TweetHashtagHashtagModuleTwitterX

Properties (2)

PropertyTypeEntityReferenceModule
(1) HashtagLONGTweetHashtagHashtagHashtagModule
(2) TweetLONGTweetHashtagTweetTweetModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /tweethashtag/{id}updateTweetHashtagById(tweethashtag)HashtagModulePUTTweetHashtag
(2) /tweethashtaginsertTweetHashtag(tweethashtag)HashtagModulePOSTTweetHashtag
(3) /tweethashtagfindAllTweetHashtag()HashtagModuleGETTweetHashtag
(4) /tweethashtag/hashtag/{id}findAllTweetHashtagOfHashtag(id)HashtagModuleGETHashtag TweetHashtag
(5) /tweethashtag/{id}deleteTweetHashtagById(id)HashtagModuleDELETETweetHashtag
(6) /tweethashtag/tweet/{id}findAllTweetHashtagOfTweet(id)HashtagModuleGETTweet TweetHashtag
(7) /tweethashtag/{id}findTweetHashtagById(id)HashtagModuleGETTweetHashtag





Example:

final TweetHashtag tweethashtag = (TweetHashtag) invokeModule(HASHTAG_MODULE + "/tweethashtag/" + id, TweetHashtag.class);
if (tweethashtag != null) {
    final Tweet tweet1 = (Tweet) invokeModule(TWEET_MODULE + "/tweet/" + tweethashtag.getTweet().getId(), Tweet.class);
    if (tweet1 != null) {
        final UserAccount inreplytouser2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + tweet1.getInReplyToUser().getId(), UserAccount.class);
        if (inreplytouser2 != null) {
        }
        final UserAccount user3 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + tweet1.getUser().getId(), UserAccount.class);
        if (user3 != null) {
        }
    }
    final Hashtag hashtag4 = (Hashtag) invokeModule(HASHTAG_MODULE + "/hashtag/" + tweethashtag.getHashtag().getId(), Hashtag.class);
    if (hashtag4 != null) {
    }
}
return tweethashtag;


Overview

Summary

ContactDonateImprint