| Contact | Donate | Imprint |
| CommentLike | UserAccountModule |
| Property | Type | Entity | Reference | Module |
| (1) Comment | LONG | CommentLike | Comment | StoryModule |
| (2) CreatedAt | DATE | CommentLike | ||
| (3) UserAccount | LONG | CommentLike | UserAccount | UserAccountModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /commentlike | findAllCommentLike() | UserAccountModule | GET | CommentLike |
| (2) /commentlike | insertCommentLike(commentlike) | UserAccountModule | POST | CommentLike |
| (3) /commentlike/{id} | deleteCommentLikeById(id) | UserAccountModule | DELETE | CommentLike |
| (4) /commentlike/{id} | findCommentLikeById(id) | UserAccountModule | GET | CommentLike |
| (5) /commentlike/comment/{id} | findAllCommentLikeOfComment(id) | UserAccountModule | GET | Comment CommentLike |
| (6) /commentlike/useraccount/{id} | findAllCommentLikeOfUserAccount(id) | UserAccountModule | GET | UserAccount CommentLike |
| (7) /commentlike/{id} | updateCommentLikeById(commentlike) | UserAccountModule | PUT | CommentLike |
Example:
final CommentLike commentlike = (CommentLike) invokeModule(USER_ACCOUNT_MODULE + "/commentlike/" + id, CommentLike.class);| Contact | Donate | Imprint |