Overview

Summary

ContactDonateImprint


Appendix E-19: POST TAG (UI prompt)


PostTagSavedCollectionModuleInstagram

Properties (5)

PropertyTypeEntityReferenceModule
(1) CreatedAtDATEPostTag
(2) PositionXSTRINGPostTag
(3) PositionYSTRINGPostTag
(4) PostLONGPostTagPostUserAccountModule
(5) TaggedUserLONGPostTagUserAccountUserAccountModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /posttag/{id}updatePostTagById(posttag)SavedCollectionModulePUTPostTag
(2) /posttag/taggeduser/{id}findAllPostTagOfTaggedUser(id)SavedCollectionModuleGETUserAccount PostTag
(3) /posttagfindAllPostTag()SavedCollectionModuleGETPostTag
(4) /posttag/{id}deletePostTagById(id)SavedCollectionModuleDELETEPostTag
(5) /posttaginsertPostTag(posttag)SavedCollectionModulePOSTPostTag
(6) /posttag/{id}findPostTagById(id)SavedCollectionModuleGETPostTag
(7) /posttag/post/{id}findAllPostTagOfPost(id)SavedCollectionModuleGETPost PostTag





Example:

final PostTag posttag = (PostTag) invokeModule(SAVED_COLLECTION_MODULE + "/posttag/" + id, PostTag.class);
if (posttag != null) {
    final UserAccount taggeduser1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + posttag.getTaggedUser().getId(), UserAccount.class);
    if (taggeduser1 != null) {
    }
    final Post post2 = (Post) invokeModule(USER_ACCOUNT_MODULE + "/post/" + posttag.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 posttag;


Overview

Summary

ContactDonateImprint