Overview

Summary

ContactDonateImprint


Appendix E-23: POST LIKE (UI prompt)


PostLikeDirectThreadModuleInstagram

Properties (3)

PropertyTypeEntityReferenceModule
(1) CreatedAtDATEPostLike
(2) PostLONGPostLikePostUserAccountModule
(3) UserAccountLONGPostLikeUserAccountUserAccountModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /postlike/{id}updatePostLikeById(postlike)DirectThreadModulePUTPostLike
(2) /postlike/post/{id}findAllPostLikeOfPost(id)DirectThreadModuleGETPost PostLike
(3) /postlikefindAllPostLike()DirectThreadModuleGETPostLike
(4) /postlike/{id}findPostLikeById(id)DirectThreadModuleGETPostLike
(5) /postlike/useraccount/{id}findAllPostLikeOfUserAccount(id)DirectThreadModuleGETUserAccount PostLike
(6) /postlikeinsertPostLike(postlike)DirectThreadModulePOSTPostLike
(7) /postlike/{id}deletePostLikeById(id)DirectThreadModuleDELETEPostLike





Example:

final PostLike postlike = (PostLike) invokeModule(DIRECT_THREAD_MODULE + "/postlike/" + id, PostLike.class);
if (postlike != null) {
    final UserAccount useraccount1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + postlike.getUserAccount().getId(), UserAccount.class);
    if (useraccount1 != null) {
    }
    final Post post2 = (Post) invokeModule(USER_ACCOUNT_MODULE + "/post/" + postlike.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 postlike;


Overview

Summary

ContactDonateImprint