Overview

Summary

ContactDonateImprint


Appendix E-9: POST HASHTAG (UI prompt)


PostHashtagHashtagModuleInstagram

Properties (2)

PropertyTypeEntityReferenceModule
(1) HashtagLONGPostHashtagHashtagHashtagModule
(2) PostLONGPostHashtagPostUserAccountModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /posthashtag/{id}deletePostHashtagById(id)HashtagModuleDELETEPostHashtag
(2) /posthashtaginsertPostHashtag(posthashtag)HashtagModulePOSTPostHashtag
(3) /posthashtag/{id}findPostHashtagById(id)HashtagModuleGETPostHashtag
(4) /posthashtagfindAllPostHashtag()HashtagModuleGETPostHashtag
(5) /posthashtag/post/{id}findAllPostHashtagOfPost(id)HashtagModuleGETPost PostHashtag
(6) /posthashtag/hashtag/{id}findAllPostHashtagOfHashtag(id)HashtagModuleGETHashtag PostHashtag
(7) /posthashtag/{id}updatePostHashtagById(posthashtag)HashtagModulePUTPostHashtag





Example:

final PostHashtag posthashtag = (PostHashtag) invokeModule(HASHTAG_MODULE + "/posthashtag/" + id, PostHashtag.class);
if (posthashtag != null) {
    final Hashtag hashtag1 = (Hashtag) invokeModule(HASHTAG_MODULE + "/hashtag/" + posthashtag.getHashtag().getId(), Hashtag.class);
    if (hashtag1 != null) {
    }
    final Post post2 = (Post) invokeModule(USER_ACCOUNT_MODULE + "/post/" + posthashtag.getPost().getId(), Post.class);
    if (post2 != null) {
        final Location location3 = (Location) invokeModule(FEATURE_FLAG_MODULE + "/location/" + post2.getLocation().getId(), Location.class);
        if (location3 != null) {
        }
        final UserAccount useraccount4 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + post2.getUserAccount().getId(), UserAccount.class);
        if (useraccount4 != null) {
        }
    }
}
return posthashtag;


Overview

Summary

ContactDonateImprint