Overview

Summary

ContactDonateImprint


Appendix E-27: COMMENT LIKE (UI prompt)


CommentLikeUserAccountModuleInstagram

Properties (3)

PropertyTypeEntityReferenceModule
(1) CommentLONGCommentLikeCommentStoryModule
(2) CreatedAtDATECommentLike
(3) UserAccountLONGCommentLikeUserAccountUserAccountModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /commentlikefindAllCommentLike()UserAccountModuleGETCommentLike
(2) /commentlikeinsertCommentLike(commentlike)UserAccountModulePOSTCommentLike
(3) /commentlike/{id}deleteCommentLikeById(id)UserAccountModuleDELETECommentLike
(4) /commentlike/{id}findCommentLikeById(id)UserAccountModuleGETCommentLike
(5) /commentlike/comment/{id}findAllCommentLikeOfComment(id)UserAccountModuleGETComment CommentLike
(6) /commentlike/useraccount/{id}findAllCommentLikeOfUserAccount(id)UserAccountModuleGETUserAccount CommentLike
(7) /commentlike/{id}updateCommentLikeById(commentlike)UserAccountModulePUTCommentLike





Example:

final CommentLike commentlike = (CommentLike) invokeModule(USER_ACCOUNT_MODULE + "/commentlike/" + id, CommentLike.class);
if (commentlike != null) {
    final Comment comment1 = (Comment) invokeModule(STORY_MODULE + "/comment/" + commentlike.getComment().getId(), Comment.class);
    if (comment1 != null) {
        final UserAccount useraccount2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + comment1.getUserAccount().getId(), UserAccount.class);
        if (useraccount2 != null) {
        }
        final Post post3 = (Post) invokeModule(USER_ACCOUNT_MODULE + "/post/" + comment1.getPost().getId(), Post.class);
        if (post3 != null) {
            final Location location4 = (Location) invokeModule(FEATURE_FLAG_MODULE + "/location/" + post3.getLocation().getId(), Location.class);
            if (location4 != null) {
            }
            final UserAccount useraccount5 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + post3.getUserAccount().getId(), UserAccount.class);
            if (useraccount5 != null) {
            }
        }
    }
    final UserAccount useraccount6 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + commentlike.getUserAccount().getId(), UserAccount.class);
    if (useraccount6 != null) {
    }
}
return commentlike;


Overview

Summary

ContactDonateImprint