| Contact | Donate | Imprint |
| Comment | UserAccountModule |
| Property | Type | Entity | Reference | Module |
| (1) AuthorUser | LONG | Comment | UserAccount | UserAccountModule |
| (2) Body | STRING | Comment | ||
| (3) CreatedAt | DATE | Comment | ||
| (4) IsDeleted | BOOL | Comment | ||
| (5) ParentComment | LONG | Comment | ||
| (6) Post | LONG | Comment | Post | PostModule |
| (7) UpdatedAt | DATE | Comment |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /reaction/comment/{id} | findAllReactionOfComment(id) | PostModule | GET | Comment Reaction |
| (2) /comment | findAllComment() | UserAccountModule | GET | Comment |
| (3) /comment/{id} | deleteCommentById(id) | UserAccountModule | DELETE | Comment |
| (4) /comment | insertComment(comment) | UserAccountModule | POST | Comment |
| (5) /comment/authoruser/{id} | findAllCommentOfAuthorUser(id) | UserAccountModule | GET | UserAccount Comment |
| (6) /comment/{id} | findCommentById(id) | UserAccountModule | GET | Comment |
| (7) /comment/post/{id} | findAllCommentOfPost(id) | UserAccountModule | GET | Post Comment |
| (8) /comment/{id} | updateCommentById(comment) | UserAccountModule | PUT | Comment |
Example:
final Comment comment = (Comment) invokeModule(USER_ACCOUNT_MODULE + "/comment/" + id, Comment.class);| Contact | Donate | Imprint |